-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (33 loc) · 1.01 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
35
36
37
38
39
40
#!/usr/bin/env python
import os
import sys
from setuptools import setup
VERSION = '0.0.2'
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
scripts = ['nebula/nebula']
setup(
name='nebula',
version=VERSION,
author='Deni Bertovic',
author_email='[email protected]',
description='CLI/Toolbelt for Nebula',
url='https://github.com/dobarkod/nebula-toolbelt',
packages=['nebula'],
license='Apache 2.0',
scripts=scripts,
install_requires=['docopt >= 0.6.1', 'requests >= 2.0.1'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Topic :: System :: Clustering',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Installation/Setup',
'Topic :: Utilities'
],
)