setup~20120418-182926.py 686 B

1234567891011121314151617181920212223242526
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. import colors
  4. setup(
  5. name='ansicolors',
  6. version=colors.__version__,
  7. description='ANSI colors for Python',
  8. long_description=open('README.rst').read(),
  9. author='Giorgos Verigakis',
  10. author_email='verigak@gmail.com',
  11. url='http://github.com/verigak/colors/',
  12. license='ISC',
  13. py_modules=['colors'],
  14. classifiers=[
  15. 'Environment :: Console',
  16. 'Intended Audience :: Developers',
  17. 'License :: OSI Approved :: ISC License (ISCL)',
  18. 'Programming Language :: Python :: 2.6',
  19. 'Programming Language :: Python :: 2.7',
  20. 'Programming Language :: Python :: 3'
  21. ]
  22. )