-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (49 loc) · 1.66 KB
/
setup.py
File metadata and controls
51 lines (49 loc) · 1.66 KB
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
#
# Please see the License.txt file for more information.
# All other rights reserved.
#
"""
Allscripts Touchworks API Client for Python
-------------------------------------------
The Allscripts Touchworks API Client makes it wasy to
interact with the Touchworks Platform APIs when writing client
applications in Python.
The Allscripts Touchworks API Client for Python is distributed under
the MIT License.
"""
from setuptools import setup
setup(
name="touchworks",
version="0.3",
license="MIT",
author="Farshid Ghods",
author_email="farshid.ghods@gmail.com",
url="https://github.com/farshidce/touchworks-python",
download_url="https://github.com/farshidce/touchworks-python/tarball/0.3",
description="Allscripts Touchworks API Client for Python",
packages=["touchworks"],
platforms="any",
zip_safe=False,
install_requires=[
"requests>=2.3.0"
],
tests_require=[
"nose>=1.3.7"
],
test_suite="nose.collector",
keywords=["health", "api", "touchworks", "ehr"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)