PageRenderTime 56ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/setup.py

https://github.com/peplin/astral
Python | 34 lines | 32 code | 2 blank | 0 comment | 0 complexity | 68807a38cdd356eba64f32922787ea51 MD5 | raw file
  1. import astral
  2. import os
  3. from setuptools import find_packages, setup
  4. ROOT_PATH = os.path.abspath(os.path.dirname(__file__))
  5. long_description = open(os.path.join(ROOT_PATH, 'README.rst')).read()
  6. setup(name='astral',
  7. version=astral.__version__,
  8. description='Astral Streaming P2P Client',
  9. long_description=long_description,
  10. author='Astral Project Group',
  11. author_email='astral@bueda.com',
  12. url='http://github.com/peplin/astral',
  13. test_suite='nose.collector',
  14. setup_requires=['nose>=0.11',],
  15. test_requires=['unittest2>=0.5.1',
  16. 'mockito==0.5.1',
  17. 'python-faker==0.2.3',
  18. 'factory-boy==1.0.0',],
  19. install_requires=[
  20. 'tornado>=1.2.1',
  21. 'sqlalchemy>=0.6.6',
  22. 'Elixir>=0.7.1',
  23. 'restkit>=3.2.0',
  24. ],
  25. packages=find_packages(),
  26. entry_points={
  27. 'console_scripts': [
  28. 'astralnode = astral.bin.astralnode:main',
  29. 'astralctl = astral.bin.astralctl:main',
  30. ],
  31. },
  32. )