-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.58 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools==75.1.0", "wheel==0.44.0"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "Idan Morad", email = "[email protected]" },
]
name = "data_science_utils"
dynamic = ["version", "dependencies"]
description = "This project is an ensemble of methods which are frequently used in python Data Science projects."
license = { text = "MIT" }
requires-python = ">=3.9"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: tox",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["data-science", "utilities", "python", "machine-learning", "scikit-learn", "matplotlib", "plotly"]
[project.urls]
Homepage = "https://github.com/idanmoradarthas/DataScienceUtils"
Documentation = "https://datascienceutils.readthedocs.io/en/latest/"
Issues = "https://github.com/idanmoradarthas/DataScienceUtils/issues"
Repository = "https://github.com/idanmoradarthas/DataScienceUtils.git"
Changelog = "https://github.com/idanmoradarthas/DataScienceUtils/blob/master/CHANGELOG.md"
[tool.setuptools]
packages = ["ds_utils"]
[tool.setuptools.dynamic]
version = { attr = "ds_utils.__version__" }
dependencies = { file = ["requirements.txt"] }