-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 852 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
import setuptools
with open("README.md", "r") as f:
long_desc = f.read()
setuptools.setup(
name="pynuxmv",
long_description=long_desc,
long_description_content_type="text/markdown",
version="0.1.2",
author="Matteo Cavada",
author_email="[email protected]",
description="Transpile Python to nuXmv source code",
url="https://github.com/mattyonweb/pynuxmv",
packages=["pynuxmv"],
python_requires='>=3.8',
entry_points={
'console_scripts': [
'pynuXmv = pynuxmv.cli:clio',
],
},
extras_require={
"Pretty printing": ["astpretty"],
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Testing"
],
)