forked from WenjieDu/PyGrinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1011 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
36
37
from setuptools import setup, find_packages
from pygrinder import __version__
with open("./README.md", encoding="utf-8") as f:
README = f.read()
setup(
name="pygrinder",
version=__version__,
description="A Python toolkit for introducing missing values into datasets",
long_description=README,
long_description_content_type="text/markdown",
license="GPL-3.0",
author="Wenjie Du",
author_email="[email protected]",
url="https://github.com/WenjieDu/PyGrinder",
download_url="https://github.com/WenjieDu/PyGrinder/archive/main.zip",
keywords=[
"missing data",
"missing values",
"data corruption",
"incomplete data",
"partial observation",
"data mining",
"pypots",
"missingness",
],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
"numpy",
"scikit_learn",
"pandas",
],
setup_requires=["setuptools>=38.6.0"],
)