setup.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. try:
  4. from setuptools import setup
  5. except ImportError:
  6. from distutils.core import setup
  7. with open('README.rst') as readme_file:
  8. readme = readme_file.read()
  9. with open('HISTORY.rst') as history_file:
  10. history = history_file.read().replace('.. :changelog:', '')
  11. setup(
  12. name='infclass_muter',
  13. version='0.1.0',
  14. description="Teeworlds Infclass Muter to maintain mutes between map changes and re-joins",
  15. long_description=readme + '\n\n' + history,
  16. author="Boris Bobrov",
  17. author_email='breton@cynicmansion.ru',
  18. url='https://github.com/""/infclass_muter',
  19. packages=[
  20. 'infclass_muter',
  21. ],
  22. package_dir={'infclass_muter':
  23. 'infclass_muter'},
  24. include_package_data=True,
  25. license="ISCL",
  26. zip_safe=False,
  27. keywords='infclass_muter',
  28. classifiers=[
  29. 'Development Status :: 2 - Pre-Alpha',
  30. 'Intended Audience :: Developers',
  31. 'License :: OSI Approved :: ISC License (ISCL)',
  32. 'Natural Language :: English',
  33. "Programming Language :: Python :: 2",
  34. 'Programming Language :: Python :: 2.6',
  35. 'Programming Language :: Python :: 2.7',
  36. 'Programming Language :: Python :: 3',
  37. 'Programming Language :: Python :: 3.3',
  38. 'Programming Language :: Python :: 3.4',
  39. ],
  40. test_suite='tests',
  41. )