-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1.1 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="realreq",
version="0.7.4",
author="Tyler Calder",
author_email="[email protected]",
description="CLI tool to gather dependencies for imports actually used by your code",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Calder-Ty/realreq",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Build Tools",
],
packages=["_realreq", "_realreq.requtils"],
package_data={"_realreq": ["*.json"]},
python_requires=">=3.6",
entry_points={"console_scripts": ["realreq=_realreq.realreq:main"]},
)