wolframalpha/setup.py

64 lines
1.3 KiB
Python
Raw Normal View History

2015-12-20 03:29:56 +00:00
#!/usr/bin/env python
# Project skeleton maintained at https://github.com/jaraco/skeleton
2015-12-20 03:29:56 +00:00
import io
import setuptools
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
name = 'skeleton'
description = ''
nspkg_technique = 'native'
"""
Does this package use "native" namespace packages or
pkg_resources "managed" namespace packages?
"""
params = dict(
name=name,
2015-12-20 03:29:56 +00:00
use_scm_version=True,
author="Jason R. Coombs",
author_email="jaraco@jaraco.com",
description=description or name,
2015-12-20 03:29:56 +00:00
long_description=long_description,
url="https://github.com/jaraco/" + name,
2015-12-20 03:29:56 +00:00
packages=setuptools.find_packages(),
include_package_data=True,
namespace_packages=(
name.split('.')[:-1] if nspkg_technique == 'managed'
else []
),
2017-03-12 17:33:19 +00:00
python_requires='>=2.7',
2015-12-20 03:29:56 +00:00
install_requires=[
],
extras_require={
'testing': [
'pytest>=2.8',
# 'pytest-sugar',
2017-09-13 08:24:11 +00:00
'collective.checkdocs',
],
'docs': [
'sphinx',
'jaraco.packaging>=3.2',
'rst.linker>=1.9',
],
2015-12-20 03:29:56 +00:00
},
setup_requires=[
2016-10-24 14:07:33 +00:00
'setuptools_scm>=1.15.0',
],
2015-12-20 03:29:56 +00:00
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
entry_points={
},
)
if __name__ == '__main__':
setuptools.setup(**params)