-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.33 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
50
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="sam_ml-py",
version="1.3.0",
description="a library for ML programing created by Samuel Brinkmann",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.10",
packages=find_packages(),
package_data={
"sam_ml": [
"data/regio/*.csv",
"data/regio/*.dbf",
"data/regio/*.prj",
"data/regio/*.shp",
"data/regio/*.shx",
"models/microwave_finish_sound.mp3",
]
},
scripts=[],
install_requires=[
"scikit-learn",
"pandas",
"matplotlib",
"numpy",
"imbalanced-learn",
"pygame",
"ipywidgets",
"tqdm",
"statsmodels",
"sentence-transformers",
"xgboost",
"ConfigSpace", # for hyperparameter tuning spaces
"geopandas", # for regio data (e.g. germany map plot)
],
extras_require={
"test": ["pytest", "pylint", "isort", "refurb", "black"],
"with_swig": ["smac"],
},
author="Samuel Brinkmann",
license="MIT",
tests_require=["pytest"],
setup_requires=["pytest-runner"],
)