-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (29 loc) · 978 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
#!/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,
author="Frank Lu, Aadhithya Sankar",
url="https://github.com/frankzl/python_mvg_console_program.git",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": ["mvg = mvg_console.get_info:main"]
},
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",
]
)