-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (30 loc) · 872 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
"""
setuptools for mg_app_framework
python setup.py bdist_wheel
"""
from setuptools import setup, find_packages
entry_points = {
"console_scripts": [
"mt_reboot = mt.cli.mt_cluster_reboot:cluster_reboot"
]
}
with open("requirements.txt") as f:
requires = [l for l in f.read().splitlines() if l]
setup(
name='mt',
version='0.0.1',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
entry_points=entry_points,
platforms='any',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows'
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Build Tools',
]
)