setup.py 961 B

1234567891011121314151617181920212223242526272829
  1. from setuptools import setup
  2. import editorconfig
  3. setup(
  4. name='EditorConfig',
  5. version=editorconfig.__version__,
  6. author='EditorConfig Team',
  7. packages=['editorconfig'],
  8. url='http://editorconfig.org/',
  9. license='LICENSE.txt',
  10. description='EditorConfig File Locator and Interpreter for Python',
  11. long_description=open('README.rst').read(),
  12. entry_points = {
  13. 'console_scripts': [
  14. 'editorconfig = editorconfig.main:main',
  15. ]
  16. },
  17. classifiers=[
  18. 'Operating System :: OS Independent',
  19. 'Programming Language :: Python',
  20. 'Programming Language :: Python :: 2.6',
  21. 'Programming Language :: Python :: 2.7',
  22. 'Programming Language :: Python :: 3',
  23. 'Programming Language :: Python :: 3.2',
  24. 'Programming Language :: Python :: 3.3',
  25. 'Programming Language :: Python :: 3.4',
  26. 'Programming Language :: Python :: Implementation :: PyPy',
  27. ],
  28. )