X-Git-Url: https://git.phdru.name/?p=cookiecutter.git;a=blobdiff_plain;f=project_template%2Fsetup.py;h=f2bd980b72e56c6e5e3b30c650b329d53837ee74;hp=608972879ee9d087ad1c55e4c82c414c8adeb88b;hb=42f303c9e549305fecdac57682cb2da5bad90f38;hpb=50da5eb9e333d8e56e200e0492803c56c95b287d diff --git a/project_template/setup.py b/project_template/setup.py index 6089728..f2bd980 100755 --- a/project_template/setup.py +++ b/project_template/setup.py @@ -2,26 +2,29 @@ from imp import load_source from os.path import abspath, dirname, join - -try: - from setuptools import setup - is_setuptools = True -except ImportError: - from distutils.core import setup - is_setuptools = False +from setuptools import setup versionpath = join(abspath(dirname(__file__)), '{project}', '__version__.py') -load_source('{project}_version', versionpath) -# Ignore: E402 module level import not at top of file -from {project}_version import __version__ # noqa +{project}_version = load_source('{project}_version', versionpath) setup(name='{project}', - version=__version__, + 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}', + 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', @@ -43,5 +46,6 @@ setup(name='{project}', packages=['{project}'], package_data={'{project}': []}, scripts=[], + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*', requires=[], )