-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
40 lines (38 loc) · 1.26 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
35
36
37
38
39
40
from setuptools import setup, find_packages
long_description = "\n".join(
(
open("README.rst", encoding="utf-8").read(),
open("CHANGES.txt", encoding="utf-8").read(),
)
)
setup(
name="reg",
version="0.13.dev0",
description="Clever dispatch",
long_description=long_description,
author="Martijn Faassen",
author_email="[email protected]",
license="BSD",
url="http://reg.readthedocs.io",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 5 - Production/Stable",
],
install_requires=["setuptools", "repoze.lru"],
extras_require=dict(
test=["pytest >= 2.9.0", "sphinx", "pytest-remove-stale-bytecode"],
pep8=["flake8", "black"],
coverage=["pytest-cov"],
docs=["sphinx"],
),
)