-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (27 loc) · 985 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='wolframalpha',
author='liato',
author_email='[email protected]',
url='http://github.com/liato/wolframalpha',
license='MIT',
version='0.1.0',
description="A python interface to WolframAlpha.",
long_description="A python interface to WolframAlpha.",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='wolframalpha wolfram alpha scraping mathematica database',
py_modules=['wolframalpha'],
install_requires=['lxml'])