-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (35 loc) · 1.26 KB
/
setup.py
File metadata and controls
executable file
·40 lines (35 loc) · 1.26 KB
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
# -*- coding: utf-8 -*-
# Learn more: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages # type: ignore
from easeml_cicd import __version__
with open("README.md", "r") as fh:
README = fh.read()
# The main source of truth for install requirements of this project is the requirements.txt file.
with open("requirements.txt", "r") as f:
REQUIREMENTS = f.readlines()
setup(
name='easemlcicd',
version=__version__,
description='Toolset for continuos integration of ML models',
long_description=README,
long_description_content_type="text/markdown",
author='Leonel Aguilar',
author_email='leonel.aguilar.m@gmail.com',
url='https://github.com/easeml/cicd',
license='MIT',
install_requires=REQUIREMENTS,
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
entry_points={},
scripts=[
"easeml_cicd/buildbot/scripts/easeml_cicd_runner",
"easeml_cicd/buildbot/scripts/easeml_create_key",
"easeml_cicd/buildbot/scripts/easeml_encrypt_data",
"easeml_cicd/buildbot/scripts/easeml_decrypt_data"
],
)