-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (27 loc) · 1023 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
29
from setuptools import setup, find_packages
version='1.2.11'
setup(
name='pyperry',
version=version,
description='Python library for querying and mapping data through generic '
'interfaces (this is a port of the Ruby "perry" library)',
author='Travis Petticrew',
author_email='[email protected]',
maintainer='Travis Petticrew',
license='MIT',
url='http://github.com/tpett/pyperry',
packages=find_packages(exclude=['tests']),
download_url='http://pypi.python.org/packages/source/p/pyperry/pyperry-%s.tar.gz' % version,
install_requires=[
'insight-bert>=1.0.1,<=1.1.0',
'insight-bertrpc>=0.1.2,<0.2.0',
'simplejson>=2.1.0,<2.2'
],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
)