forked from 3drobotics/solo-cli
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (35 loc) · 1.21 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
from setuptools import setup, Extension
import platform
version = '1.2.0'
setup(name='solo-cli',
version=version,
description="Command line utility for Solo development.",
long_description="Command line utility for Solo development.",
url='https://github.com/3drobotics/solo-utils',
author='3D Robotics',
install_requires=[
'docopt >= 0.6.2',
'paramiko >= 1.15.2',
'scp >= 0.10.0',
'requests>=2.5.0',
'pyopenssl',
'ndg-httpsclient',
'pyasn1',
],
author_email='tim@3drobotics.com',
classifiers=['Development Status :: 4 - Beta', 'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering'],
package_data={
'soloutils': ['*.sh', 'ssh-config', 'lib/*'],
},
entry_points={
'console_scripts': [
'solo = soloutils.__main__:main'
]
},
license='apache',
packages=['soloutils'])