Merge with latest skeleton

This commit is contained in:
Jason R. Coombs
2016-04-29 10:06:30 -04:00
5 changed files with 43 additions and 10 deletions
+10 -6
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# Generated by jaraco.develop 2.27.1
# https://pypi.python.org/pypi/jaraco.develop
# Project skeleton maintained at https://github.com/jaraco/skeleton
import io
import sys
@@ -13,20 +13,24 @@ with io.open('README.rst', encoding='utf-8') as readme:
needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pytest_runner'] if needs_pytest else []
needs_sphinx = {'release', 'build_sphinx', 'upload_docs'}.intersection(sys.argv)
sphinx = ['sphinx'] if needs_sphinx else []
sphinx = ['sphinx', 'rst.linker'] if needs_sphinx else []
needs_wheel = {'release', 'bdist_wheel'}.intersection(sys.argv)
wheel = ['wheel'] if needs_wheel else []
name = 'skeleton'
description = ''
setup_params = dict(
name='wolframalpha',
name=name,
use_scm_version=True,
author="Jason R. Coombs",
author_email="jaraco@jaraco.com",
description="Wolfram|Alpha 2.0 API client",
description=description or name,
long_description=long_description,
url="https://github.com/jaraco/wolframalpha",
url="https://github.com/jaraco/" + name,
packages=setuptools.find_packages(),
include_package_data=True,
namespace_packages=name.split('.')[:-1],
install_requires=[
'six',
],