-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (42 loc) · 1.42 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
#!/usr/bin/env python
from setuptools import find_packages, setup
import scli as meta
with open('README.md', 'r') as f:
readme = f.read()
with open('requirements.txt', 'r') as f:
requirements = f.read().splitlines()
setup(
name='scylla-cli',
version='.'.join(map(str, meta.__version__)),
description='Python script for managing and repairing Scylla Cluster',
long_description=readme,
long_description_content_type='text/markdown',
keywords='scylla cluster repair cli manager database nosql cassandra',
author=meta.__author__,
author_email=meta.__contact__,
license='MIT',
license_file='LICENSE',
url=meta.__homepage__,
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=requirements,
entry_points={
'console_scripts': [
'scli=scli.main:cli',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Database',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)