-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
48 lines (42 loc) · 1.13 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
=============
Python Aggcat
=============
Python client for Intuit Customer Account Data APIs
::
pip install python-aggcat
`See full documentation for quickstart <https://aggcat.readthedocs.org/en/latest/>`_
"""
from distutils.core import setup
__version__ = "0.9"
setup(
author = 'Glen Zangirolami',
author_email = '[email protected]',
maintainer = 'Glen Zangirolami',
maintainer_email = '[email protected]',
description = 'Client for Intuit Customer Account Data APIs',
long_description = __doc__,
fullname = 'python-aggcat',
name = 'python-aggcat',
url = 'https://github.com/glenbot/python-aggcat',
download_url = 'https://github.com/glenbot/python-aggcat',
version = __version__,
platforms = ['Linux'],
packages = [
'aggcat'
],
install_requires = [
'lxml==3.2.1',
'M2Crypto==0.21.1',
'requests==1.2.0',
'requests-oauthlib==0.3.3'
],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'
]
)