12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import io
- import os
- import re
- from setuptools import find_packages
- from setuptools import setup
- def read(filename):
- filename = os.path.join(os.path.dirname(__file__), filename)
- text_type = type(u"")
- with io.open(filename, mode="r", encoding='utf-8') as fd:
- return re.sub(text_type(r':[a-z]+:`~?(.*?)`'), text_type(r'``\1``'), fd.read())
- setup(
- name="nfoservers-panel",
- version="0.2.0",
- url="",
- license='GPLv3',
- author="Boris Bobrov",
- author_email="breton@cynicmansion.ru",
- description="Python frontend for NFOServers control panel",
- long_description=read("README.rst"),
- packages=find_packages(exclude=('tests',)),
- install_requires=['grab', 'daiquiri'],
- classifiers=[
- 'Development Status :: 2 - Pre-Alpha',
- 'License :: OSI Approved :: GPLv3',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- ],
- )
|