forked from yohann84L/plot_metric
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 940 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 940 Bytes
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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='plot_metric',
version='0.0.6',
scripts=['plot_metric_package'],
install_requires=[
"scipy>=1.1.0",
"matplotlib>=3.0.2",
"colorlover>=0.3.0",
"pandas>=0.23.4",
"seaborn>=0.9.0",
"numpy>=1.15.4",
"scikit_learn>=0.21.2",
],
author="Yohann Lereclus",
author_email="lereclus84L@gmail.com",
description="A package with tools for plotting metrics",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yohann84L/plot_metric/",
packages=setuptools.find_packages(),
py_modules=['plot_metric/functions'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)