-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (81 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (81 loc) · 2.17 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "metafold"
version = "0.13.1"
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.11"
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.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.optional-dependencies]
simulation = [
"dotenv>=0.9.9",
"pandas>=2.3.3",
"plyfile>=1.1.3",
"pyyaml>=6.0.3",
"simulation-configurator==0.2.*",
"tables>=3.11.1",
]
[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"
[dependency-groups]
dev = [
"mypy>=1.19.1",
"pytest>=9.0.2",
"requests-toolbelt>=1.0.0",
"ruff>=0.14.13",
"sphinx~=7.2",
"sphinx-rtd-theme~=2.0",
"types-requests>=2.32.4.20260107",
"types-PyYAML>=6.0.12",
"pandas-stubs>=2.0.0",
]
[tool.setuptools]
packages = ["metafold", "metafold.simulation"]
[tool.uv]
environments = ["sys_platform == 'linux'"]
[tool.uv.sources]
simulation-configurator = { index = "gitlab" }
[[tool.mypy.overrides]]
module = [
"simulation_configurator.*",
"plyfile",
"metafold_graph.*",
]
ignore_missing_imports = true
[[tool.uv.index]]
name = "gitlab"
url = "https://gitlab.com/api/v4/projects/75460563/packages/pypi/simple"
explicit = true
authenticate = "always"
[tool.ruff.lint]
select = ["NPY201"]
[tool.pytest.ini_options]
pythonpath = "."
junit_suite_name = "metafold"