123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- try:
- from setuptools import setup
- except ImportError:
- from distutils.core import setup
- with open('README.rst') as readme_file:
- readme = readme_file.read()
- with open('HISTORY.rst') as history_file:
- history = history_file.read().replace('.. :changelog:', '')
- setup(
- name='infclass_muter',
- version='0.1.0',
- description="Teeworlds Infclass Muter to maintain mutes between map changes and re-joins",
- long_description=readme + '\n\n' + history,
- author="Boris Bobrov",
- author_email='breton@cynicmansion.ru',
- url='https://github.com/""/infclass_muter',
- packages=[
- 'infclass_muter',
- ],
- package_dir={'infclass_muter':
- 'infclass_muter'},
- include_package_data=True,
- license="ISCL",
- zip_safe=False,
- keywords='infclass_muter',
- classifiers=[
- 'Development Status :: 2 - Pre-Alpha',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: ISC License (ISCL)',
- 'Natural Language :: English',
- "Programming Language :: Python :: 2",
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- ],
- test_suite='tests',
- )
|