-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.77 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.77 KB
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
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="featransform",
version="1.6.60",
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 Fernando da Silva 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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
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(),
)