-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1014 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 1014 Bytes
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
from setuptools import setup
try:
long_description = open('build/README.rst').read()
except IOError:
long_description = "Generated README.rst not found. " \
"Please run from publish.sh"
setup(
name='adscli',
version='0.8.6',
description='Start, stop, and manage microservices in a codebase',
long_description=long_description,
url='https://github.com/adamcath/ads',
author='Adam Cath',
author_email='adam.cath@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
'Topic :: Software Development'
],
keywords='microservice tool launcher upstart init.d',
license='MIT',
packages=['ads'],
install_requires=['pyyaml>=3.11'],
entry_points={
'console_scripts': ['ads=ads.__main__:main']
}
)