X-Git-Url: https://git.phdru.name/?p=cookiecutter.git;a=blobdiff_plain;f=project_template%2Fsetup.py;h=7e8df8d6259aaee864e2aa9ea72dbc0eb7502e9e;hp=64595c61dd786e6e0000c5786c0b321c14ba6413;hb=f59ff0d31d44c1bade3eaa8d02ecb36d65bc415a;hpb=fcfb8abdf9e07e60faf3b5214d2c94bfd5430d75 diff --git a/project_template/setup.py b/project_template/setup.py index 64595c6..7e8df8d 100755 --- a/project_template/setup.py +++ b/project_template/setup.py @@ -7,46 +7,47 @@ from setuptools import setup versionpath = join(abspath(dirname(__file__)), '{project}', '__version__.py') {project}_version = load_source('{project}_version', versionpath) -setup(name='{project}', - version={project}_version.__version__, - description='Broytman {project}', - long_description=open('README.rst', 'rU').read(), - author='Oleg Broytman', - author_email='phd@phdru.name', - url='http://phdru.name/Software/Python/{project}', - download_url='http://phdru.name/Software/Python/{project}', - project_urls={ - 'Homepage': 'http://phdru.name/Software/Python/{project}', - 'Documentation': - 'http://phdru.name/Software/Python/{project}/docs/', - 'Russian docs': - 'http://phdru.name/Software/Python/{project}/docs/ru/', - 'Download': 'http://phdru.name/Software/Python/{project}', - 'Git repo': 'http://git.phdru.name/{project}.git/', - 'Github repo': 'https://github.com/phdru/{project}', - 'Issue tracker': 'https://github.com/phdru/{project}/issues', - }, - license='GPL', - keywords=[''], - platforms='Any', - classifiers=[ - 'Development Status :: 1 - Planning', - 'Environment :: Console', - 'Environment :: Web Environment', - 'Intended Audience :: End Users/Desktop', - 'License :: OSI Approved :: GNU General Public License (GPL)', - 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - ], - packages=['{project}'], - package_data={'{project}': []}, - scripts=[], - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*', - requires=[], - ) +setup( + name='{project}', + version={project}_version.__version__, + description='Broytman {project}', + long_description=open('README.rst', 'rU').read(), + long_description_content_type="text/x-rst", + author='Oleg Broytman', + author_email='phd@phdru.name', + url='https://phdru.name/Software/Python/{project}', + download_url='https://phdru.name/Software/Python/{project}', + project_urls={ + 'Homepage': 'https://phdru.name/Software/Python/{project}', + 'Documentation': + 'https://phdru.name/Software/Python/{project}/docs/', + 'Russian docs': + 'https://phdru.name/Software/Python/{project}/docs/ru/', + 'Download': 'https://phdru.name/Software/Python/{project}', + 'Git repo': 'https://git.phdru.name/{project}.git/', + 'Github repo': 'https://github.com/phdru/{project}', + 'Issue tracker': 'https://github.com/phdru/{project}/issues', + }, + license='GPL', + keywords=[''], + platforms='Any', + classifiers=[ + 'Development Status :: 1 - Planning', + 'Environment :: Console', + 'Environment :: Web Environment', + 'Intended Audience :: End Users/Desktop', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + ], + packages=['{project}'], + package_data={'{project}': []}, + scripts=[], + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + requires=[], +)