forked from unionai-oss/unionml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (50 loc) · 1.94 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
import pathlib
from setuptools import find_packages, setup
__version__ = "0.0.0+dev0"
with open("requirements.txt") as f:
install_requires = [x.strip() for x in f.readlines()]
LICENSE: str = "Apache"
README: str = pathlib.Path("README.md").read_text()
setup(
name="unionml",
version=__version__,
author="unionai-oss",
author_email="[email protected]",
description="The easiest way to build and deploy machine learning microservices.",
long_description=README,
long_description_content_type="text/markdown",
license=LICENSE,
keywords=["machine-learning", "artificial-intelligence", "microservices"],
data_files=[("", ["LICENSE"])],
include_package_data=True,
packages=find_packages(
include=["unionml"],
exclude=["tests*"],
),
package_data={"unionml": ["py.typed"]},
python_requires=">=3.7",
platforms="any",
install_requires=install_requires,
entry_points={"console_scripts": ["unionml = unionml.cli:app"]},
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
f"License :: OSI Approved :: {LICENSE} Software License",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
url="https://github.com/unionai-oss/unionml/",
project_urls={
"Documentation": "https://unionml.readthedocs.io/",
"Source Code": "https://github.com/unionai-oss/unionml/",
"Issue Tracker": "https://github.com/unionai-oss/unionml/issues",
},
)