-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (27 loc) · 1.07 KB
/
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
30
31
32
33
from distutils.core import setup
import sys
install_requires_list = ['zeep', 'pandas']
# Long description to be published in PyPi
LONG_DESCRIPTION = """
**PyIress** is a Python interface to the **Iress Pro Desktop Web Services
(IPD)** SOAP client (non free), with some convenience functions for retrieving
Iress data specifically. This package requires valid credentials for this
API.
For the documentation please refer to README.md inside the package or on the
GitHub (https://github.com/ceaza/pyiress/blob/master/README.md).
"""
_URL = 'https://github.com/ceaza/pyiress'
_VERSION = 'v0.0.7'
setup(name='PyIress',
version=_VERSION,
description='Python interface to the Iress Pro Desktop Web Services API',
long_description=LONG_DESCRIPTION,
url=_URL,
download_url=_URL + '/archive/' + _VERSION + '.zip',
install_requires = install_requires_list,
author='Charles Allderman',
author_email='[email protected]',
license='MIT License',
packages=['pyiress'],
classifiers=['Programming Language :: Python :: 3', ]
)