Spaces:
Running
on
Zero
Running
on
Zero
[build-system] | |
requires = ["setuptools>=64.0", "wheel"] | |
build-backend = "setuptools.build_meta" | |
[project] | |
name = "no-med" | |
version = "0.0.0" | |
description = "Neural operators for medical imaging." | |
readme = "README.md" | |
# readme-content-type = "text/markdown" | |
authors = [{ name = "Armeet Singh Jatyani", email = "armeet@caltech.edu" }] | |
license = { text = "MIT" } | |
keywords = ["medical imaging", "neural operators", "AI"] | |
classifiers = [ | |
"Programming Language :: Python :: 3", | |
"License :: OSI Approved :: MIT License", | |
"Operating System :: OS Independent", | |
] | |
requires-python = ">=3.6" | |
[project.optional-dependencies] | |
dev = ["pytest>=6.0", "black", "flake8", "pdoc3"] | |
[tool.setuptools] | |
include-package-data = true | |
packages = { find = {} } # auto find packages | |
[tool.black] | |
line-length = 80 # Default is 88, but you can set it to 100 or 120 if needed | |
target-version = ['py38', 'py39', 'py310'] # Set target Python versions | |
include = '\.pyi?$' # Format only .py and .pyi files | |
skip-string-normalization = true | |
exclude = ''' | |
/( | |
\.eggs # Exclude files generated by packaging | |
| \.git # Exclude version control files | |
| \.mypy_cache # Exclude mypy caches | |
| \.tox # Exclude tox environments | |
| \.venv # Exclude virtual environments | |
)/ | |
''' | |
fast = true | |
[tool.isort] | |
profile = "black" | |
line_length = 80 | |