-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
32 lines (29 loc) · 1.17 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
# pylint: disable=missing-module-docstring
from setuptools import find_packages, setup
# pylint: disable=unspecified-encoding
with open("requirements.txt", "r") as lines:
requirements = lines.read().splitlines()
setup(
name="modelstore",
version="0.0.81",
packages=find_packages(exclude=["tests", "examples", "docs", "workflows"]),
include_package_data=True,
description="modelstore is a library for versioning, exporting, storing, and loading machine learning models",
long_description="Please refer to: https://modelstore.readthedocs.io/en/latest/",
long_description_content_type="text/markdown",
url="https://github.com/operatorai/modelstore",
author="Neal Lathia",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
],
license="Please refer to the readme",
python_requires=">=3.6",
install_requires=requirements,
entry_points={
'console_scripts': ['modelstore=modelstore.__main__:cli']
},
)