setup.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. """
  2. """
  3. from setuptools import setup, find_packages
  4. import os
  5. import sys
  6. def read(fname):
  7. return open(os.path.join(os.path.dirname(__file__), fname)).read()
  8. args = {
  9. "name":"smart-top",
  10. "version":"1.0.0",
  11. "author":"The Phi Technology LLC","author_email":"info@the-phi.com",
  12. "license":"MIT",
  13. "packages":["smart"]}
  14. args["keywords"]=['mongodb','couchdb','rabbitmq','file','read','write','s3','sqlite']
  15. args["install_requires"] = ['pandas','numpy','requests']
  16. args["url"] = "https://dev.the-phi.com/git/steve/smart-top.git"
  17. if sys.version_info[0] == 2 :
  18. args['use_2to3'] = True
  19. args['use_2to3_exclude_fixers']=['lib2to3.fixes.fix_import']
  20. setup(**args)
  21. # setup(
  22. # name = "data-transport",
  23. # version = "1.0",
  24. # author = "The Phi Technology LLC",
  25. # author_email = "steve@the-phi.com",
  26. # license = "MIT",
  27. # packages=['transport'],
  28. # keywords=['mongodb','couchdb','rabbitmq','file','read','write','s3'],
  29. # install_requires = ['pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'],
  30. # url="https://dev.the-phi.com/git/steve/data-transport.git",
  31. # use_2to3=True,
  32. # long_description=read('README.md'),
  33. # convert_2to3_doctests=['README.md'],
  34. # #use_2to3_fixers=['your.fixers'],
  35. # use_2to3_exclude_fixers=['lib2to3.fixes.fix_import'],
  36. # )