-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1009 Bytes
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
[build-system]
requires = [
"setuptools>=61",
"wheel",
"setuptools-rust>=1.8",
]
build-backend = "setuptools.build_meta"
[project]
name = "likelihood"
authors = [
{ name = "J. A. Moreno-Guerra", email = "jzs.gm27@gmail.com" }
]
maintainers = [
{ name = "Jafet Castañeda", email = "jafetcc17@gmail.com" }
]
description = "A package that performs the maximum likelihood algorithm."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10,<3.13"
license = "MIT"
urls = { Homepage = "https://github.com/jzsmoreno/likelihood/" }
dynamic = ["version", "dependencies"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
full = [
"networkx",
"pyvis",
"tensorflow>=2.15.0",
"keras-tuner",
"scikit-learn",
"torch",
]
[tool.setuptools]
packages = { find = {} }
[tool.setuptools.dynamic]
version = { file = ["likelihood/VERSION"] }
dependencies = { file = ["requirements.txt"] }