-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (33 loc) · 1019 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = [
"setuptools>=42",
"wheel",
"cython"
]
build-backend = "setuptools.build_meta"
[project]
authors = [{name = "Alen Buhanec", email = "alen.buhanec@gmail.com"}]
name = "spookyhash"
description = "A Python wrapper for SpookyHash version 2"
readme = "README.md"
keywords = ["SpookyHash", "hashlib"]
license = {text = "MIT"}
classifiers = [
"Topic :: Software Development :: Libraries",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest", "hypothesis"]
[tool.setuptools]
py-modules = ["spookyhash"]
[tool.setuptools.dynamic]
version = {attr = "spookyhash.__version__"}