wolframalpha/setup.py

31 lines
671 B
Python
Raw Normal View History

2012-10-03 22:11:02 +00:00
#!/usr/bin/env python
# Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop)
import setuptools
2012-10-04 00:36:35 +00:00
with open('README') as f:
long_description = f.read()
2012-10-03 22:11:02 +00:00
setup_params = dict(
name='wolframalpha',
use_hg_version=True,
2012-10-04 00:36:35 +00:00
description="Wolfram|Alpha 2.0 API client",
long_description = long_description,
2012-10-03 22:11:02 +00:00
author="Jason R. Coombs",
author_email="jaraco@jaraco.com",
url="https://bitbucket.org/jaraco/wolframalpha",
packages=setuptools.find_packages(),
zip_safe=False,
install_requires=[
'six',
],
2012-10-03 22:11:02 +00:00
setup_requires=[
'hgtools',
2014-06-08 09:30:27 +00:00
'pytest-runner',
],
tests_require=[
'pytest',
2012-10-03 22:11:02 +00:00
],
)
if __name__ == '__main__':
setuptools.setup(**setup_params)