-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (55 loc) · 2.04 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
52
53
54
55
56
57
58
59
60
61
#
# Copyright (C) 2014, All Rights Reserved, PokitDok, Inc.
# https://www.pokitdok.com
#
# Please see the License.txt file for more information.
# All other rights reserved.
#
"""
PokitDok Platform API Client for Python
---------------------------------------
The PokitDok Platform API Client makes it easy it interact with the
PokitDok Platform APIs when writing client applications in Python.
See https://platform.pokitdok.com for more information.
The PokitDok Platform API Client for Python is distributed under the MIT License.
"""
from setuptools import setup
setup(
name="pokitdok",
version="1.1",
license="MIT",
author="PokitDok, Inc.",
author_email="platform@pokitdok.com",
url="https://platform.pokitdok.com",
download_url='https://github.com/pokitdok/pokitdok-python/tarball/1.1',
description="PokitDok Platform API Client",
long_description=__doc__,
packages=["pokitdok", "pokitdok.api"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=[
"requests>=2.3.0", "oauthlib<0.7.0", "requests-oauthlib==0.4.1"
],
tests_require=[
"vcrpy==1.0.2"
],
test_suite='nose.collector',
keywords=['health', 'api', 'pokitdok', 'X12', 'eligibility', 'claims', 'providers', 'prices', 'healthcare',
'referrals', 'authorizations', 'insurance', 'plans'],
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.6",
"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"
]
)