-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.18 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
import setuptools
from mlpipeline import __version__
# to build and install:
# python setup.py
# pip install dist/mlpipeline-*-py3-none-any.whl
setuptools.setup(
name="mlpipeline",
version=__version__,
author='Ahmed Shariff',
author_email='[email protected]',
packages=setuptools.find_packages(),
description='A framework to define a machine learning pipeline',
long_description=open('README.rst').read(),
long_description_content_type='text/markdown',
url='https://github.com/ahmed-shariff/mlpipeline',
install_requires=['easydict>=1.8', 'mlflow>=1.0.0'],
entry_points={
'console_scripts': [
'mlpipeline_old=mlpipeline._pipeline:main',
'_mlpipeline_subprocess_old=mlpipeline._pipeline_subprocess:main',
'mlpipeline=mlpipeline._cli:cli'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
)