forked from WenjieDu/PyGrinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 933 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (29 loc) · 933 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
from setuptools import setup, find_packages
from pycorruptor.__version__ import version
with open('./README.md', encoding='utf-8') as f:
README = f.read()
setup(
name='pycorruptor',
version=version,
description='A Python Toolbox for Data Corruption',
long_description=README,
long_description_content_type='text/markdown',
license='GPL-3.0',
author='Wenjie Du',
author_email='wenjay.du@gmail.com',
url='https://github.com/WenjieDu/PyCorruptor',
download_url='https://github.com/WenjieDu/PyCorruptor/archive/main.zip',
keywords=[
'missing data', 'missing values', 'data corruption',
'incomplete data', 'partial observation',
'data mining',
],
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=[
'numpy',
'scikit_learn',
'pandas',
],
setup_requires=['setuptools>=38.6.0'],
)