-
Notifications
You must be signed in to change notification settings - Fork 158
/
setup.py
118 lines (111 loc) · 3.86 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/usr/bin/env python
import os
import re
from glob import glob
from os.path import basename, splitext
from setuptools import find_packages, setup # type: ignore
# TODO: Update the package meta-data
NAME = "opyrator"
MAIN_PACKAGE = "opyrator"
DESCRIPTION = "Turn python functions into microservices with auto-generated HTTP API, interactive UI, and more."
URL = "https://github.com/ml-tooling/opyrator"
EMAIL = "[email protected]"
AUTHOR = "ML Tooling Team"
LICENSE = "MIT"
REQUIRES_PYTHON = ">=3.6"
VERSION = None # Only set version if you like to overwrite the version in _about.py
PWD = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
with open(os.path.join(PWD, "README.md"), encoding="utf-8") as f:
long_description = f.read()
# Extract the version from the _about.py module.
if not VERSION:
with open(os.path.join(PWD, "src", MAIN_PACKAGE, "_about.py")) as f: # type: ignore
VERSION = re.findall(r"__version__\s*=\s*\"(.+)\"", f.read())[0]
# Where the magic happens:
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
license=LICENSE,
packages=find_packages(where="src", exclude=("tests", "test", "examples", "docs")),
package_dir={"": "src"},
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
zip_safe=False,
install_requires=[
"typer",
"fastapi",
"uvicorn",
"streamlit>=0.72",
"plotly",
# Not required anymore
# "typing_utils",
"pandas",
"numpy",
"loguru",
],
# deprecated: dependency_links=dependency_links,
extras_require={
# TODO: Add all extras (e.g. for build and test) here:
# extras can be installed via: pip install package[dev]
"dev": [
"setuptools",
"wheel",
"twine",
"flake8",
"pytest",
"pytest-mock",
"pytest-cov",
"mypy",
"black",
"pydocstyle",
"isort",
"lazydocs",
],
},
include_package_data=True,
package_data={
# If there are data files included in your packages that need to be
# 'sample': ['package_data.dat'],
},
classifiers=[
# TODO: Update based on https://pypi.org/classifiers/
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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 :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
],
project_urls={
"Changelog": URL + "/releases",
"Issue Tracker": URL + "/issues",
"Documentation": URL + "#documentation",
"Source": URL,
},
entry_points={"console_scripts": [f"{NAME}={MAIN_PACKAGE}._cli:cli"]},
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
],
)