-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
42 lines (31 loc) · 1.19 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
36
37
38
39
40
41
42
import keras_metrics
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file.
with open(os.path.join(here, "README.md"), encoding="utf-8") as md:
long_description = md.read()
setuptools.setup(
name="keras-metrics",
version=keras_metrics.__version__,
long_description=long_description,
long_description_content_type="text/markdown",
description="Metrics for Keras model evaluation",
url="https://github.com/netrack/keras-metrics",
author="Yasha Bubnov",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords="keras metrics evaluation",
packages=setuptools.find_packages(exclude=["tests"]),
install_requires=["Keras>=2.1.5,<2.3.0"],
)