forked from Cobliteam/cassandra-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 745 Bytes
/
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
from setuptools import setup
VERSION = '0.3.3'
setup(name='cassandra-migrate',
packages=['cassandra_migrate'],
version=VERSION,
description='Simple Cassandra database migration program.',
long_description=open('README.rst').read(),
url='https://github.com/Cobliteam/cassandra-migrate',
download_url='https://github.com/Cobliteam/cassandra-migrate/archive/{}.tar.gz'.format(VERSION),
author='Daniel Miranda',
author_email='[email protected]',
license='MIT',
install_requires=[
'cassandra-driver',
'future',
'PyYAML<5.0',
'arrow',
'tabulate'
],
scripts=['bin/cassandra-migrate'],
keywords='cassandra schema migration')