-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (43 loc) · 1.65 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
49
50
51
from setuptools import setup, find_packages
# Don't import analytics-python module here, since deps may not be installed
# sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'pymarketo'))
# python setup.py register -r pypi
# python setup.py sdist upload -r pypi
long_description = '''
This module helps developers work with the Agresso Unit4 (ver. Milestone 4) Query Engine
SOAP webservice easily without worry about the transport layer/protocol and getting data in easible
ingestible formats: JSON, CSV
Example:
```python
from pyagresso.queryengineservice import QueryEngineService
username = os.getenv('AGRESSO_USERNAME')
password = os.getenv('AGRESSO_PASSWORD')
client = os.getenv('AGRESSO_CLIENT')
instance_url = os.getenv('AGRESSO_INSTANCE_URL')
ag = QueryEngineService(username, password,client,instance_url)
about_response_as_xml = ag.about()
```
Note:
* Not using bdd in this library due to small size of module undertest
'''
setup(
name='pyagresso',
version='0.2.0dev1',
description='Python Client for Unit4 Agresso System',
url='https://github.com/osamakhn/pyagresso',
author='Osama Khan',
author_email='[email protected]',
license='MIT License',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'requests'
],
long_description=long_description,
keywords='Unit4 Agresso Milestone4',
classifier=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3'],
project_urls={
'Source': 'https://www.github.com/osamakhn/pyagresso'
}
)