|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "peptdeep" |
| 7 | +requires-python = ">=3.8.0" |
| 8 | +dynamic = ["version", "dependencies", "optional-dependencies"] |
| 9 | + |
| 10 | +authors = [ |
| 11 | + {name = "Mann Labs", email = "jalew.zwf@qq.com"} |
| 12 | +] |
| 13 | +description = "The AlphaX deep learning framework for Proteomics" |
| 14 | +readme = "README.md" |
| 15 | +keywords = [ |
| 16 | + "mass spectrometry", |
| 17 | + "proteomics", |
| 18 | + "search engine", |
| 19 | + "DIA", |
| 20 | + "data-independent acquisition", |
| 21 | + "bioinformatics", |
| 22 | + "AlphaPept", |
| 23 | + "AlphaPept ecosystem", |
| 24 | + "deep learning", |
| 25 | + "AlphaX ecosystem", |
| 26 | +] |
| 27 | +license = {file = "LICENSE.txt"} |
| 28 | +classifiers = [ |
| 29 | + "Development Status :: 5 - Production/Stable", |
| 30 | + # "Development Status :: 6 - Mature", |
| 31 | + # "Development Status :: 7 - Inactive" |
| 32 | + "Intended Audience :: Science/Research", |
| 33 | + "License :: OSI Approved :: Apache Software License", |
| 34 | + "Operating System :: OS Independent", |
| 35 | + "Programming Language :: Python :: 3", |
| 36 | + "Topic :: Scientific/Engineering :: Bio-Informatics", |
| 37 | +] |
| 38 | + |
| 39 | +[project.urls] |
| 40 | + |
| 41 | +"Paper preprint" = "https://www.biochem.mpg.de/mann" |
| 42 | +Repository = "https://github.com/MannLabs/peptdeep" |
| 43 | +#Documentation = "https://readthedocs.org" |
| 44 | +#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md" |
| 45 | +Issues = "https://github.com/MannLabs/peptdeep/issues" |
| 46 | +"Mann Labs Homepage" = "https://www.biochem.mpg.de/mann" |
| 47 | +Docs = "https://alphapeptdeep.readthedocs.io/en/latest/" |
| 48 | +PyPi = "https://pypi.org/project/peptdeep/" |
| 49 | + |
| 50 | +[tool.setuptools.packages] |
| 51 | +find = {} |
| 52 | + |
| 53 | +[tool.setuptools.dynamic] |
| 54 | +# https://stackoverflow.com/a/73600610 |
| 55 | +dependencies = {file = ["requirements/requirements_loose.txt"]} |
| 56 | +optional-dependencies = { stable = { file = ["requirements/requirements.txt", |
| 57 | +] }, gui = { file = [ "requirements/requirements_gui_loose.txt", |
| 58 | +] }, gui-stable = { file = [ "requirements/requirements_gui.txt", |
| 59 | +] }, development = { file = ["requirements/requirements_development_loose.txt", |
| 60 | +] }, development-stable = { file = ["requirements/requirements_development.txt", |
| 61 | +] }, hla = { file = ["requirements/requirements_hla_loose.txt", |
| 62 | +] }, hla-stable = { file = ["requirements/requirements_hla.txt", |
| 63 | +] }} |
| 64 | +version = {attr = "peptdeep.__version__"} |
| 65 | + |
| 66 | +[project.scripts] |
| 67 | +peptdeep = "peptdeep.cli:run" |
| 68 | + |
| 69 | +[tool.ruff] |
| 70 | +extend-exclude = [".bumpversion.cfg"] |
1 | 71 |
|
2 | 72 | [tool.ruff.lint] |
3 | 73 | select = ["E", "F"] |
|
0 commit comments