-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
65 lines (60 loc) · 1.58 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
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "metafold"
version = "0.11.0"
authors = [
{name = "Metafold 3D", email = "info@metafold3d.com"},
]
dependencies = [
"attrs~=23.2",
"auth0-python~=4.7",
"numpy~=2.0",
"requests~=2.31",
"scipy~=1.11",
]
readme = "README.md"
license = {file = "LICENSE"}
description = "Metafold SDK for Python"
requires-python = ">=3.9"
keywords = ["metafold", "api", "sdk", "implicit geometry"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://www.metafold3d.com/"
Documentation = "https://metafold3d.github.io/metafold-python/"
Repository = "https://github.com/Metafold3d/metafold-python.git"
Issues = "https://github.com/Metafold3d/metafold-python/issues"
[project.optional-dependencies]
docs = [
"sphinx~=7.2",
"sphinx_rtd_theme~=2.0",
]
lint = [
"mypy~=1.10",
"types-requests~=2.31",
]
test = [
"pytest~=7.3",
"requests-toolbelt~=1.0",
]
networkx = [
"networkx~=3.2",
"types-networkx~=3.2",
]
[tool.setuptools]
packages = ["metafold"]
[tool.ruff.lint]
select = ["NPY201"]