-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.69 KB
/
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
38
39
40
41
42
43
44
45
46
47
import setuptools
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="mlimputer",
version="1.0.10",
description="MLimputer - Missing Data Imputation Framework for Supervised Machine Learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TsLu1s/MLimputer",
author="Luís Santos",
author_email="[email protected]",
license="MIT",
classifiers=[
# Indicate who your project is intended for
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Customer Service",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Telecommunications Industry",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
],
py_modules=["mlimputer"],
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
keywords=[
"data science",
"machine learning",
"data preprecessing",
"null imputation",
"predictive null imputation",
"multiple null imputation",
"automated machine learning",
],
install_requires=open("requirements.txt").readlines(),
)