-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (40 loc) · 1.17 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 find_packages, setup
with open("pycompgen/version.txt") as ifp:
VERSION = ifp.read().strip()
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="pycompgen",
version=VERSION,
packages=find_packages(),
package_data={"pycompgen": ["py.typed"]},
install_requires=[],
extras_require={
"dev": [
"black",
"isort",
"mypy",
],
"distribute": [
"setuptools",
"twine",
"wheel",
],
},
description="pycompgen: Generate shell completions for Python CLIs",
long_description=long_description,
long_description_content_type="text/markdown",
author="Moonstream",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
],
python_requires=">=3.6",
url="https://github.com/bugout-dev/pycompgen",
entry_points={"console_scripts": []},
include_package_data=True,
)