-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
59 lines (52 loc) · 1.88 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
#!/usr/bin/env python
import pkg_resources
import setuptools
import pathlib
import os
from setuptools import setup, find_packages
__version__ = "0.3.1"
project = "mlchain"
def readme():
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
return f.read()
with pathlib.Path('requirements.txt').open() as requirements_txt:
install_requires = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(requirements_txt)
]
setup(
name=project,
version=__version__,
description='MLchain Python Library',
long_description=readme(),
long_description_content_type='text/markdown',
url='http://github.com/Techainer/mlchain-python',
author='Techainer Inc.',
author_email='[email protected]',
package_data={'mlchain.cli': ['mlconfig.yaml', 'mlchain_server.py'],'mlchain.server':['static/*','templates/*','templates/swaggerui/*']},
include_package_data=True,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=install_requires,
keywords=['mlchain', 'development', 'deployment ai', 'ai', 'artificial neural network', 'training', 'deploy',
'deployment', 'monitoring', 'model', 'deep learning', 'machine learning'],
zip_safe=False,
setup_requires=[],
dependency_links=[],
python_requires='>=3',
tests_require=[
"pytest",
"mock>=1.0.1",
],
py_modules=['mlchain'],
entry_points={"console_scripts": ["mlchain = mlchain.cli.main:main"]},
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)