setup.py 546 B

12345678910111213141516171819
  1. """
  2. This is a build file for the
  3. """
  4. from setuptools import setup, find_packages
  5. setup(
  6. name = "data-transport",
  7. version = "1.0",
  8. author = "The Phi Technology LLC",
  9. author_email = "steve@the-phi.com",
  10. license = "MIT",
  11. packages=['transport'],
  12. install_requires = ['pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'],
  13. use_2to3=True,
  14. convert_2to3_doctests=['src/your/module/README.txt'],
  15. use_2to3_fixers=['your.fixers'],
  16. use_2to3_exclude_fixers=['lib2to3.fixes.fix_import'],
  17. )