forked from frankzl/python_mvg_console_program
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.04 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
#!/usr/bin/env python3
import setuptools
from mvg_console import __version__, __description__
# Long description
with open("README.md", "r") as f:
long_description = f.read()
print(setuptools.find_packages())
setuptools.setup(
name="mvg_console",
version=__version__,
description=__description__,
long_description=long_description,
long_description_content_type = "text/markdown",
author="Aadhithya Sankar, Frank Lu",
url="https://github.com/aadhithya/mvg_console",
packages=setuptools.find_packages(),
install_requires=['requests','colr','prettytable'],
entry_points={
"console_scripts": ["mvg = mvg_console.main:app"]
},
python_requires=">=3.6",
classifiers=[
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
]
)