-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 701 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='cdeploy',
version='1.0',
description='A tool for managing Cassandra schema migrations',
author='David McHoull',
author_email='dmchoull@gmail.com',
license='http://www.apache.org/licenses/LICENSE-2.0',
url='https://github.com/dmchoull/cdeploy',
download_url='https://github.com/dmchoull/cdeploy/archive/v1.0.tar.gz',
keywords=['cassandra', 'migrations'],
packages=find_packages(),
install_requires=['PyYAML', 'cassandra-driver'],
tests_require=['mock'],
test_suite="cdeploy.test",
entry_points={
'console_scripts': [
'cdeploy = cdeploy.migrator:main'
]
}
)