-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.12 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.12 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
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="ColdSnap",
version="0.1.0",
author="Sebastian Proost",
author_email="sebastian.proost@gmail.com",
description="Create snapshots of machine learning models and their training data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/raeslab/coldsnap/",
project_urls={
"Bug Tracker": "https://github.com/raeslab/coldsnap/issues",
},
install_requires=[
"numpy>=2.0.0,<3.0.0",
"pandas>=2.0.0,<3.0.0",
"scikit-learn>=1.5.2,<2.0.0",
"matplotlib>=3.9.0,<4.0.0",
"shap>=0.46.0,<1.0.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
license="Creative Commons Attribution-NonCommercial-ShareAlike 4.0. https://creativecommons.org/licenses/by-nc-sa/4.0/",
packages=find_packages("src"),
package_dir={"": "src"},
python_requires=">=3.10",
)