-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
47 lines (45 loc) · 1.47 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
41
42
43
44
45
46
47
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='infraboxcli',
version='0.9.0',
url='https://github.com/infrabox/cli',
description='Command Line Interface for InfraBox',
long_description=readme(),
long_description_content_type="text/markdown",
author='infrabox',
license='MIT',
packages=['infraboxcli',
'infraboxcli.dashboard',
'pyinfrabox',
'pyinfrabox.infrabox',
'pyinfrabox.badge',
'pyinfrabox.docker_compose',
'pyinfrabox.markup',
'pyinfrabox.testresult'],
install_requires=[
'future',
'jsonschema==2.6.0',
'requests',
'colorama',
'socketIO_client',
'PyJWT',
'cryptography',
'inquirer',
'pyyaml'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
scripts=['bin/infrabox'],
include_package_data=True,
zip_safe=False)