-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 862 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="keras_model_cv",
version="0.6.2",
description="Cross-validation for keras models",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
license_files="LICENSE",
dec="README.md",
author="Pavel Dubovik",
author_email="geometryk@gmail.com",
url="https://github.com/dubovikmaster/keras-model-cv",
packages=find_packages(),
include_package_data=True,
keywords=[
'keras cross-validate',
'validation keras models'
'cross-validation'
],
install_requires=[
"tensorflow >= 2.0",
"scikit-learn",
"pandas",
"pyyaml",
"matplotlib",
"tqdm",
],
platforms='any'
)