-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 951 Bytes
/
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
with open('requirements.txt', 'r') as f:
requirements = f.read().split('\n')
f.close()
setuptools.setup(
name='easymlserve',
version='0.1',
packages=setuptools.find_packages(),
install_requires=requirements,
extras_require={
'dev': [
'pytest'
]
},
author='Oliver Neumann',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Natural Language :: English',
'Operating System :: OS Independent',
],
description='Deploy machine learning pipelines easily in a RESTful way.',
keywords='rest restful machine-learning',
)