data-transport/setup.py

24 lines
803 B
Python
Raw Normal View History

"""
This is a build file for the
"""
from setuptools import setup, find_packages
2019-09-17 16:53:44 +00:00
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "data-transport",
version = "1.0",
author = "The Phi Technology LLC",
author_email = "steve@the-phi.com",
license = "MIT",
packages=['transport'],
2019-09-17 16:53:44 +00:00
keywords=['mongodb','couchdb','rabbitmq','file','read','write','s3'],
install_requires = ['pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'],
2019-09-17 16:53:44 +00:00
url="https://dev.the-phi.com/git/steve/data-transport.git",
use_2to3=True,
2019-09-17 16:53:44 +00:00
long_description=read('README.md'),
convert_2to3_doctests=['README.md'],
use_2to3_fixers=['your.fixers'],
use_2to3_exclude_fixers=['lib2to3.fixes.fix_import'],
)