|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling", "hatch-vcs"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "fileformats-medimage-CHANGEME-extras" |
| 7 | +description = "Extensions to add functionality to tool-specific *fileformats* classes" |
| 8 | +readme = "README.rst" |
| 9 | +requires-python = ">=3.8" |
| 10 | +dependencies = [ |
| 11 | + "fileformats", |
| 12 | + "fileformats-medimage-CHANGEME", |
| 13 | + "pydra >= 0.23.0a" |
| 14 | +] |
| 15 | +license = {file = "LICENSE"} |
| 16 | +authors = [ |
| 17 | + {name = "Thomas G. Close", email = "tom.g.close@gmail.com"}, |
| 18 | +] |
| 19 | +maintainers = [ |
| 20 | + {name = "Thomas G. Close", email = "tom.g.close@gmail.com"}, |
| 21 | +] |
| 22 | +keywords = [ |
| 23 | + "file formats", |
| 24 | + "data", |
| 25 | +] |
| 26 | +classifiers = [ |
| 27 | + "Development Status :: 3 - Alpha", |
| 28 | + "Environment :: Console", |
| 29 | + "Intended Audience :: Science/Research", |
| 30 | + "License :: OSI Approved :: Apache Software License", |
| 31 | + "Operating System :: MacOS :: MacOS X", |
| 32 | + "Operating System :: Microsoft :: Windows", |
| 33 | + "Operating System :: POSIX :: Linux", |
| 34 | + "Programming Language :: Python :: 3.8", |
| 35 | + "Programming Language :: Python :: 3.9", |
| 36 | + "Programming Language :: Python :: 3.10", |
| 37 | + "Programming Language :: Python :: 3.11", |
| 38 | + "Topic :: Scientific/Engineering", |
| 39 | +] |
| 40 | +dynamic = ["version"] |
| 41 | + |
| 42 | +[project.optional-dependencies] |
| 43 | +dev = [ |
| 44 | + "black", |
| 45 | + "pre-commit", |
| 46 | + "codespell", |
| 47 | + "flake8", |
| 48 | + "flake8-pyproject", |
| 49 | +] |
| 50 | +test = [ |
| 51 | + "pytest >=6.2.5", |
| 52 | + "pytest-env>=0.6.2", |
| 53 | + "pytest-cov>=2.12.1", |
| 54 | + "codecov", |
| 55 | +] |
| 56 | + |
| 57 | +converters = [ |
| 58 | +] |
| 59 | + |
| 60 | +[project.urls] |
| 61 | +repository = "https://github.com/nipype/pydra-CHANGEME" |
| 62 | + |
| 63 | +[tool.hatch.version] |
| 64 | +source = "vcs" |
| 65 | +raw-options = { root = "../.." } |
| 66 | + |
| 67 | +[tool.hatch.build.hooks.vcs] |
| 68 | +version-file = "fileformats/extras/medimage_CHANGEME/_version.py" |
| 69 | + |
| 70 | +[tool.hatch.build.targets.wheel] |
| 71 | +packages = ["fileformats"] |
| 72 | + |
| 73 | +[tool.black] |
| 74 | +target-version = ['py38'] |
| 75 | +exclude = "fileformats/extras/medimage_CHANGEME/_version.py" |
| 76 | + |
| 77 | +[tool.codespell] |
| 78 | +ignore-words = ".codespell-ignorewords" |
| 79 | + |
| 80 | +[tool.flake8] |
| 81 | +doctests = true |
| 82 | +per-file-ignores = [ |
| 83 | + "__init__.py:F401" |
| 84 | +] |
| 85 | +max-line-length = 88 |
| 86 | +select = "C,E,F,W,B,B950" |
| 87 | +extend-ignore = ['E203', 'E501', 'E129'] |
0 commit comments