-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.8 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
49
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="featransform",
version="0.1.10",
description="Featransform is an automated feature engineering framework for supervised machine learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TsLu1s/Featransform",
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",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
py_modules=["featransform"],
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
keywords=[
"data science",
"machine learning",
"data processing",
"feature engineering",
"automated feature engineering",
"automated machine learning",
"predictive modeling",
],
install_requires=open("requirements.txt").readlines(),
)