-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 943 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='n3d',
version='0.3.4',
description='Utility for step-by-step application deployment',
author='Anton Grudko',
author_email='[email protected]',
url="http://github.com/grudko/n3d",
py_modules=['n3d'],
install_requires=['pexpect == 2.4', 'termcolor'],
entry_points={
'console_scripts': [
'n3d = n3d:main',
]
},
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
]
)