-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
55 lines (47 loc) · 1.95 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
#!/usr/bin/env python
import re
from setuptools import setup, find_packages
VERSION = ""
with open("infermedica_api/__init__.py", "r") as f:
VERSION = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE
).group(1)
long_description = """
The Infermedica Python client provides access to powerful medical diagnostic API created by Infermedica.
README and Samples - https://github.com/infermedica/python-api
Developer portal - https://developer.infermedica.com
API Reference - https://developer.infermedica.com/docs/api
"""
setup(
name="infermedica-api",
version=VERSION,
description="The Infermedica Python client for Infermedica API.",
long_description=long_description,
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="infermedica medical api library rest http",
author="Infermedica",
author_email="[email protected]",
url="https://github.com/infermedica/python-api",
license="Apache 2.0",
packages=find_packages(exclude=["examples"]),
install_requires=["requests>=2.32.2"],
)