-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (31 loc) · 1.15 KB
/
setup.py
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
from pathlib import Path
from setuptools import find_packages, setup
test_requires = ["pytest", "mypy"]
setup(
name="Ordered-set-37",
version="2.0",
url="https://github.com/bustawin/ordered-set-37",
project_urls={
"Documentation": "https://github.com/bustawin/ordered-set-37",
"Code": "https://github.com/bustawin/ordered-set-37",
"Issue tracker": "https://github.com/bustawin/ordered-set-37/issues/",
},
license="Unlicense",
author="Xavier Bustamante",
author_email="[email protected]",
description="Dead simple & fast ordered set using python's 3.7+ dict.",
packages=find_packages(),
python_requires=">=3.7",
long_description=Path("README.rst").read_text("utf8"),
extras_require={"test": test_requires},
tests_require=test_requires,
setup_requires=["pytest-runner"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)