setup.py 1.0KB

1234567891011121314151617181920212223242526272829303132333435
  1. #!/usr/bin/env python
  2. from __future__ import with_statement
  3. from distutils.core import setup
  4. with open('README.rst') as doc:
  5. long_description = doc.read()
  6. setup(
  7. name = 'cdiff',
  8. version = '0.0.1',
  9. author = 'Matthew Wang',
  10. author_email = 'mattwyl@gmail.com',
  11. license = 'BSD-3',
  12. description = ('View colored, incremental diff in unified format or side '
  13. 'by side with auto pager'),
  14. long_description = long_description,
  15. keywords = 'colored incremental side-by-side diff',
  16. url = 'https://github.com/ymattw/cdiff',
  17. classifiers = [
  18. 'Development Status :: 3 - Alpha',
  19. 'Topic :: Utilities',
  20. 'License :: OSI Approved :: BSD License',
  21. 'Environment :: Console',
  22. 'Intended Audience :: Developers',
  23. 'Operating System :: MacOS :: MacOS X',
  24. 'Operating System :: POSIX',
  25. 'Operating System :: Unix',
  26. 'Programming Language :: Python',
  27. ],
  28. package_dir = {'': 'src'},
  29. packages = [''],
  30. py_modules = ['cdiff'],
  31. scripts = ['src/cdiff'],
  32. )