-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 887 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
from setuptools import setup, find_packages
REQUIREMENTS = ["numpy", "pandas", "sklearn", "matplotlib"]
with open("README.md", mode="r", encoding="utf8") as f:
LONG_DESCRIPTION = f.read()
setup(
name="data_toolbox",
version="0.0.2",
author="Haoyin Xu, Jacob Desman, Muna Igboko, Qianqi Huang",
author_email="haoyinxu@gmail.com",
maintainer="Haoyin Xu",
maintainer_email="haoyinxu@gmail.com",
description="Team Cyan's function toolbox for data selection and modeling",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/PCM5/Data-Toolbox",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
],
install_requires=REQUIREMENTS,
packages=find_packages(),
)