-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
27 lines (25 loc) · 976 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
from setuptools import setup, find_packages
import os
with open("README.md", encoding="utf8") as f:
long_description = f.read()
# Setting up
setup(
name="regressionmetrics",
version="1.4.0",
author="ashishpatel26",
author_email="ashishpatel.ce.2011@gmail.com",
description="Regression Metrics Calculation Made easy.",
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=['pandas', 'numpy', 'scikit-learn', 'tensorflow-cpu', 'tensorflow-gpu'],
keywords=['regressionmertics','regression', 'metrics', 'regression metrics', 'regression metrics calculation', 'regression metrics calculation made easy'],
url='http://github.com/ashishpatel26/regressionmetrics',
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
platforms=["any"],
zip_safe=True,
)