-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
37 lines (34 loc) · 1.17 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
import re
module_file = open("chacractl/__init__.py").read()
metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", module_file))
long_description = open('README.rst').read()
from setuptools import setup, find_packages
setup(
name = 'chacractl',
description = 'client tool for a chacra service',
packages = find_packages(),
author = 'Alfredo Deza',
author_email = '[email protected]',
scripts = ['bin/chacractl'],
install_requires = ['tambo>=0.1.0', 'requests', 'requests-toolbelt==0.9.1'],
version = metadata['version'],
url = 'https://github.com/ceph/chacractl',
license = "MIT",
zip_safe = False,
keywords = "http api chacra",
long_description = long_description,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
tests_require=[
'pytest'
]
)