-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (34 loc) · 966 Bytes
/
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
import setuptools
name = "jig-py"
version = "0.1.1"
description = "Jig for Python"
dependencies = [
"fire",
"typed_ast",
"graphviz",
]
with open("README.md", "r") as fh:
long_description = fh.read()
packages = [
package for package in setuptools.find_packages() if package.startswith("jig")
]
namespaces = ["jig"]
setuptools.setup(
name=name,
version=version,
author="Jig-Py Project Team",
author_email="[email protected]",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/levii/jig-py",
packages=packages,
namespaces=namespaces,
entry_points={"console_scripts": ["jig-py = jig.cli.main:main"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=dependencies,
)