Skip to content

Commit

Permalink
Added files to support submission to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Bradford committed Feb 12, 2015
1 parent 41a5d99 commit 33d0a6e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
34 changes: 34 additions & 0 deletions setup.py
@@ -0,0 +1,34 @@
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path

setup(
name='trireme',
version='1.0.0.dev1',

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.0.0.dev1',

author='Christopher Bradford',
author_email='cbradford@opensourceconnections.com',

license='BSD',

classifiers=[
'Development Status :: 3 - Alpha',

'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',

'Programming Language :: Python :: 3',
],

keywords='cassandra solr dse dsc migrations development',

packages=find_packages(exclude=['contrib', 'docs', 'tests*']),

install_requires=['lz4', 'blist', 'cassandra-driver', 'requests', 'invoke']
)

0 comments on commit 33d0a6e

Please sign in to comment.