-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.3 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
"""
andrototal-cli
---------------
local_worker
"""
from setuptools import find_packages, setup
with open('README.rst', 'r') as f:
long_description = f.read()
EXCLUDE_FROM_PACKAGES = ['docs._build','docs._template', 'docs._static']
setup(
name='andrototal-cli',
version='1.62',
license='GPL',
description='local_worker package',
long_description=long_description,
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
entry_points = {
"console_scripts": ['andrototal-cli = local_worker.scan_cli:main']
},
install_requires = ['adapters','andropilot'],
dependency_links = ['http://github.com/andrototal-org/andropilot/tarball/master/#egg=andropilot-1.0',
'http://github.com/andrototal-org/andrototal_adapters/tarball/master/#egg=adapters-1.0'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.3',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
)