-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
37 lines (33 loc) · 977 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
36
37
"""
A setuptools based setup module.
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
description = 'datatoolkit for MLOps projects'
setup(
name='datatoolkit',
version='0.0.1',
description=description,
long_description=description,
long_description_content_type='text/x-rst',
url='a',
author='Igor Malashchuk, CSC',
author_email='a',
license='CSC',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: MLOps Users',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='datatoolkit yaml_file MLOps',
packages=find_packages(),
install_requires=['jinja2>=2.7', 'pyyaml', 'prettytable', 'gitpython'],
entry_points={
'console_scripts': [
'datatoolkit = datatoolkit.main:main'
]
},
)