mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 01:26:51 +03:00
adding md->rst converting
This commit is contained in:
parent
7824ba10fa
commit
0110a7b9d9
30
setup.py
30
setup.py
|
@ -6,8 +6,14 @@ from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
# Getting description.
|
# Getting description.
|
||||||
with open('README.md') as readme_file:
|
try:
|
||||||
|
import pypandoc
|
||||||
|
except (IOError, ImportError):
|
||||||
|
with open('README.md') as readme_file:
|
||||||
description = readme_file.read()
|
description = readme_file.read()
|
||||||
|
else:
|
||||||
|
description = pypandoc.convert('README.md', 'rst', format='markdown')
|
||||||
|
|
||||||
|
|
||||||
# Getting requirements.
|
# Getting requirements.
|
||||||
with open('requirements.txt') as version:
|
with open('requirements.txt') as version:
|
||||||
|
@ -45,21 +51,21 @@ setup(
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 1 - Planning',
|
'Development Status :: 1 - Planning',
|
||||||
# 'Development Status :: 4 - Beta',
|
# 'Development Status :: 4 - Beta',
|
||||||
# 'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
# 'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
# 'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
# 'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
# 'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
# 'Programming Language :: Python :: 2.6',
|
'Programming Language :: Python :: 2.6',
|
||||||
# 'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
# 'Programming Language :: Python :: 3',
|
# 'Programming Language :: Python :: 3',
|
||||||
# 'Programming Language :: Python :: 3.2',
|
# 'Programming Language :: Python :: 3.2',
|
||||||
# 'Programming Language :: Python :: 3.3',
|
# 'Programming Language :: Python :: 3.3',
|
||||||
# 'Programming Language :: Python :: 3.4',
|
# 'Programming Language :: Python :: 3.4',
|
||||||
# 'Programming Language :: Python :: Implementation :: CPython',
|
'Programming Language :: Python :: Implementation :: CPython',
|
||||||
# 'Programming Language :: Python :: Implementation :: PyPy',
|
# 'Programming Language :: Python :: Implementation :: PyPy',
|
||||||
# 'Topic :: Software Development',
|
'Topic :: Software Development',
|
||||||
# 'Topic :: Software Development :: Libraries',
|
'Topic :: Software Development :: Libraries',
|
||||||
# 'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user