X-Git-Url: https://git.phdru.name/?p=cookiecutter.git;a=blobdiff_plain;f=project_template%2Fsetup.py;h=f2bd980b72e56c6e5e3b30c650b329d53837ee74;hp=f43df31f34be95223ae746c8186a10a6db820ff1;hb=42f303c9e549305fecdac57682cb2da5bad90f38;hpb=1be6d93333697c1969be9dbaa722299effa770f5 diff --git a/project_template/setup.py b/project_template/setup.py index f43df31..f2bd980 100755 --- a/project_template/setup.py +++ b/project_template/setup.py @@ -2,29 +2,32 @@ 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', - platforms=['any'], keywords=[''], + platforms='Any', classifiers=[ 'Development Status :: 1 - Planning', 'Environment :: Console', @@ -43,5 +46,6 @@ setup(name='{project}', packages=['{project}'], package_data={'{project}': []}, scripts=[], + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*', requires=[], )