-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.41 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
41
42
43
from setuptools import setup
from compressor.constants import VERSION
tests_require = ("pytest", "pytest-cov", "codecov", "mypy", "pylint", "flake8", "black")
docs_require = ("Sphinx", "sphinx-autodoc-annotation")
with open("README.rst", "r") as readme:
LONG_DESC = readme.read()
setup(
name="trenzalore",
version=VERSION,
description="Text compression tool",
long_description=LONG_DESC,
author="Mariano Anaya",
author_email="marianoanaya@gmail.com",
url="https://github.com/rmariano/compr",
packages=("compressor",),
zip_safe=True,
license="MIT",
keywords="text compression",
install_requires=docs_require,
setup_requires=["pytest-runner"],
extras_require={"tests": tests_require, "docs": docs_require},
tests_require=tests_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={"console_scripts": ["pycompress = compressor.cli:main"]},
)