-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (25 loc) · 876 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='mdatagen',
version='0.1.71',
keywords=['machine learning', 'preprocessing data'],
packages=find_packages(where="src"),
package_dir={"": "src"},
license='MIT',
author='Arthur Dantas Mangussi',
author_email='mangussiarthur@gmail.com',
url='https://github.com/ArthurMangussi/pymdatagen',
description='mdatagen: A Python Library for the Generation of Artificial Missing Data',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.10.12',
install_requires=[
'numpy >= 1.25.0',
'pandas >= 2.0.3',
'scikit-learn >= 1.3.0',
'missingno >= 0.5.2',
'scipy >= 1.11.4']
)