-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (45 loc) · 1.7 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
48
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="atlantic",
version="1.1.60",
description="Atlantic is an automated preprocessing framework for supervised machine learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TsLu1s/Atlantic",
author="Luís Santos",
author_email="luisf_ssantos@hotmail.com",
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=["atlantic"],
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
keywords=[
"data science",
"machine learning",
"data processing",
"predictive modeling",
"data preprocessing",
"automated data preprocessing",
"automated machine learning",
"automl",
],
install_requires=open("requirements.txt").readlines(),
)