File size: 1,344 Bytes
1b34a12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[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 = "[email protected]" }]
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