-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.32 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
os.chdir(here)
NAME = "unicourt"
VERSION = os.getenv("SDK_VERSION")
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["python_dateutil >= 2.5.3", "urllib3 >= 1.25.3"]
setup(
name=NAME,
version=VERSION,
description="Python bindings for the UniCourt Enterprise APIs",
author="UniCourt",
author_email="[email protected]",
license="",
url="https://unicourt.com/",
project_urls={
"Source": "https://github.com/UniCourt/enterprise-api-py-sdk/tree/main",
"Documentation": "https://docs.unicourt.com/",
},
keywords=["UniCourt", "UniCourt Python Package",
"UniCourt Enterprise APIs"],
python_requires=">=3.6",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description="""The UniCourt Python Package provides simplified access to the UniCourt API for applications written in the Python programming language. Documentation of UniCourt's APIs can be found at docs.unicourt.com. API keys can be obtained by filling out the form here https://unicourt.com/contact-us/?c=sales&enterprise=1
"""
)