-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (60 loc) · 1.74 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-systems]
requires = ["setuptools >= 61"]
build-backend = "setuptools.build_meta"
[project]
name = "sepes"
dynamic = ["version"]
requires-python = ">=3.8"
license = { file = "LICENSE" }
description = "Visualize, create, and operate on nested trees in the most intuitive way possible."
authors = [{ name = "Mahmoud Asem", email = "[email protected]" }]
keywords = [
"jax",
"neural-networks",
"functional-programming",
"machine-learning",
]
dependencies = ["typing-extensions"]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
default = ["optree"]
jax = ["jax>=0.4.7"]
numpy = ["numpy", "optree"]
torch = ["torch", "optree"]
[tool.setuptools.dynamic]
version = { attr = "sepes.__version__" }
[tool.setuptools.packages.find]
include = ["sepes", "sepes.*"]
[project.urls]
Source = "https://github.com/ASEM000/sepes"
[tool.ruff]
select = ["F", "E", "I", "W", "C90", "N", "D"]
line-length = 120
fixable = ["ALL"]
ignore = [
"E731", # do not assign a lambda expression, use a def
"N804", # first argument of a classmethod should be named 'cls'
"D104", # Missing docstring in public package
"D103", # Missing docstring in public function
"D411",
"N813",
"D105",
"C901",
]
[tool.ruff.pydocstyle]
convention = "google"
[tool.isort]
profile = "black"
line_length = 120