-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
33 lines (22 loc) · 988 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
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages # Always prefer setuptools over distutils
setup(
name='trireme',
version='1.3.0',
description='Migration tool providing support for Apache Cassandra, DataStax Enterprise Cassandra, & DataStax '
'Enterprise Solr.',
url='https://github.com/o19s/trireme',
download_url='https://github.com/o19s/trireme/tarball/1.3.0',
author='Christopher Bradford',
author_email='cbradford@opensourceconnections.com',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
],
keywords='cassandra solr dse dsc migrations development',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['lz4', 'blist', 'cassandra-driver', 'requests', 'invoke']
)