2016-06-23 14:05:07 +03:00
|
|
|
|
|
|
|
SETUP_INFO = dict(
|
|
|
|
name = '${project:name}',
|
|
|
|
version = '${infi.recipe.template.version:version}',
|
|
|
|
author = '${infi.recipe.template.version:author}',
|
|
|
|
author_email = '${infi.recipe.template.version:author_email}',
|
|
|
|
|
|
|
|
url = ${infi.recipe.template.version:homepage},
|
2017-06-18 12:35:08 +03:00
|
|
|
license = 'BSD',
|
2016-06-23 14:05:07 +03:00
|
|
|
description = """${project:description}""",
|
|
|
|
|
|
|
|
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
classifiers = [
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: System Administrators",
|
2017-06-18 12:35:08 +03:00
|
|
|
"License :: OSI Approved :: BSD License",
|
2016-06-23 14:05:07 +03:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
2016-08-01 10:28:10 +03:00
|
|
|
"Programming Language :: Python :: 2.7",
|
|
|
|
"Programming Language :: Python :: 3.4",
|
2016-06-23 14:05:07 +03:00
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
2016-08-01 10:28:10 +03:00
|
|
|
"Topic :: Database"
|
2016-06-23 14:05:07 +03:00
|
|
|
],
|
|
|
|
|
|
|
|
install_requires = ${project:install_requires},
|
|
|
|
namespace_packages = ${project:namespace_packages},
|
|
|
|
|
|
|
|
package_dir = {'': 'src'},
|
|
|
|
package_data = {'': ${project:package_data}},
|
|
|
|
include_package_data = True,
|
|
|
|
zip_safe = False,
|
|
|
|
|
|
|
|
entry_points = dict(
|
|
|
|
console_scripts = ${project:console_scripts},
|
|
|
|
gui_scripts = ${project:gui_scripts},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
if SETUP_INFO['url'] is None:
|
|
|
|
_ = SETUP_INFO.pop('url')
|
|
|
|
|
|
|
|
def setup():
|
|
|
|
from setuptools import setup as _setup
|
|
|
|
from setuptools import find_packages
|
|
|
|
SETUP_INFO['packages'] = find_packages('src')
|
|
|
|
_setup(**SETUP_INFO)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
setup()
|
|
|
|
|