-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (40 loc) · 1.49 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
from setuptools import setup, find_packages
VERSION = '0.0.6'
DESCRIPTION = 'Client library to create serverless REST endpoints on shippedbrain.com'
LONG_DESCRIPTION = open("README.md", "r", encoding="utf-8").read()
install_requires = [
"mlflow",
"click"
]
extras_require = {
"dev": ["pytest"]
}
# Setting up
setup(name="shippedbrain",
version=VERSION,
author="Shipped Brain",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.6.0",
install_requires=install_requires,
extras_require=extras_require,
keywords=['pretrained-models', 'shipped-brain', 'machine-learning', 'artificial-intelligence', 'deploy', 'serve', "serverless", "model-hub", "data-science", 'mlflow'],
license="LICENSE",
url="https://github.com/shippedbrain/shippedbrain",
entry_points={
"console_scripts": [
"shippedbrain=shippedbrain.cli:cli"
]
},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
])