|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "hatchling", |
| 4 | + "hatch-vcs", |
| 5 | + ] |
| 6 | +build-backend = "hatchling.build" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "coderdata" |
| 10 | +description = "A package to download, load, and process multiple benchmark multi-omic drug response datasets" |
| 11 | + |
| 12 | +requires-python = ">=3.9" |
| 13 | +authors = [ |
| 14 | + { name = "Jeremy Jacobson", email = "[email protected]" }, |
| 15 | + { name = "Yannick Mahlich", email = "[email protected]" }, |
| 16 | + { name = "Sara Gosline", email = "[email protected]"} |
| 17 | +] |
| 18 | +classifiers = [ |
| 19 | + "License :: OSI Approved :: BSD License", |
| 20 | + "Operating System :: OS Independent", |
| 21 | + "Programming Language :: Python :: 3 :: Only", |
| 22 | + "Programming Language :: Python :: 3.9", |
| 23 | + "Programming Language :: Python :: 3.10", |
| 24 | + "Programming Language :: Python :: 3.11", |
| 25 | + "Programming Language :: Python :: 3.12", |
| 26 | + "Programming Language :: Python :: 3.13", |
| 27 | + "Topic :: Scientific/Engineering", |
| 28 | + "Topic :: Scientific/Engineering :: Bio-Informatics", |
| 29 | +] |
| 30 | +dependencies = [ |
| 31 | + "numpy", |
| 32 | + "pandas", |
| 33 | + "requests", |
| 34 | +] |
| 35 | +dynamic = [ |
| 36 | + "version", |
| 37 | + ] |
| 38 | +readme = "README.md" |
| 39 | +license = {text = "2-clause BSD"} |
| 40 | + |
| 41 | +[project.scripts] |
| 42 | +coderdata = "coderdata.cli:main" |
| 43 | + |
| 44 | +[project.urls] |
| 45 | +Homepage = "https://github.com/PNNL-CompBio/candleDataProcessing" |
| 46 | +Documentation = "https://pnnl-compbio.github.io/coderdata/" |
| 47 | +Repository = "https://github.com/PNNL-CompBio/coderdata.git" |
| 48 | +Issues = "https://github.com/PNNL-CompBio/coderdata/issues" |
| 49 | + |
| 50 | +[tool.hatch.version] |
| 51 | +source = "vcs" |
| 52 | + |
| 53 | +[tool.hatch.build.hooks.vcs] |
| 54 | +version-file = "coderdata/_version.py" |
| 55 | + |
| 56 | +[tool.hatch.build.targets.sdist] |
| 57 | +include = [ |
| 58 | + "/coderdata", |
| 59 | +] |
0 commit comments