-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from MannLabs/remove_setup_py
substitute setup.py with pyproject.toml
- Loading branch information
Showing
22 changed files
with
289 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1 @@ | ||
#!python | ||
|
||
|
||
__project__ = "directlfq" | ||
__version__ = "0.3.1-dev0" | ||
__license__ = "Apache" | ||
__description__ = "An open-source Python package of the AlphaPept ecosystem" | ||
__author__ = "Mann Labs" | ||
__author_email__ = "opensource@alphapept.com" | ||
__github__ = "https://github.com/MannLabs/directlfq" | ||
__keywords__ = [ | ||
"bioinformatics", | ||
"software", | ||
"AlphaPept ecosystem", | ||
] | ||
__python_version__ = ">=3.9" | ||
__classifiers__ = [ | ||
# "Development Status :: 1 - Planning", | ||
# "Development Status :: 2 - Pre-Alpha", | ||
# "Development Status :: 3 - Alpha", | ||
# "Development Status :: 4 - Beta", | ||
"Development Status :: 5 - Production/Stable", | ||
# "Development Status :: 6 - Mature", | ||
# "Development Status :: 7 - Inactive" | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
__console_scripts__ = [ | ||
"directlfq=directlfq.cli:run", | ||
] | ||
__urls__ = { | ||
"Mann Labs at MPIB": "https://www.biochem.mpg.de/mann", | ||
"Mann Labs at CPR": "https://www.cpr.ku.dk/research/proteomics/mann/", | ||
"GitHub": __github__, | ||
# "ReadTheDocs": None, | ||
# "PyPi": None, | ||
# "Scientific paper": None, | ||
} | ||
__extra_requirements__ = { | ||
"development": "requirements_development.txt", | ||
"gui": "requirements_gui.txt" | ||
} | ||
__version__ = "0.3.1-dev0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
conda create -n directlfq python=3.9 -y | ||
conda activate directlfq | ||
pip install -e '../.[development-stable, gui]' | ||
pip install -e '../.[development, gui]' | ||
directlfq | ||
conda deactivate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
conda create -n directlfq python=3.9 -y | ||
conda activate directlfq | ||
pip install -e '../.[stable,development-stable, gui-stable]' | ||
pip install -e '../.[stable, gui-stable, development]' | ||
directlfq | ||
conda deactivate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "directlfq" | ||
requires-python = ">=3.9" | ||
dynamic = ["version", "dependencies", "optional-dependencies"] | ||
|
||
authors = [ | ||
{name = "Mann Labs", email = "opensource@alphapept.com"} | ||
] | ||
description = "An open-source Python package of the AlphaPept ecosystem" | ||
readme = "README.md" | ||
keywords = [ | ||
"LFQ", | ||
"label-free quantification", | ||
"mass spectrometry", | ||
"proteomics", | ||
"bioinformatics", | ||
"AlphaPept", | ||
"AlphaPept ecosystem", | ||
] | ||
license = {file = "LICENSE.txt"} | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
# "Development Status :: 6 - Mature", | ||
# "Development Status :: 7 - Inactive" | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
|
||
[project.urls] | ||
|
||
"Paper preprint" = "https://www.biochem.mpg.de/mann" | ||
Repository = "https://github.com/MannLabs/directlfq" | ||
#Documentation = "https://readthedocs.org" | ||
#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md" | ||
Issues = "https://github.com/MannLabs/directlfq/issues" | ||
"Mann Labs Homepage" = "https://www.biochem.mpg.de/mann" | ||
|
||
[tool.setuptools.packages] | ||
find = {} | ||
|
||
[tool.setuptools.dynamic] | ||
# https://stackoverflow.com/a/73600610 | ||
dependencies = {file = ["requirements/requirements_loose.txt"]} | ||
optional-dependencies = { stable = { file = ["requirements/requirements.txt", | ||
] }, gui = { file = [ "requirements/requirements_gui_loose.txt", | ||
] }, gui-stable = { file = [ "requirements/requirements_gui.txt", | ||
] }, development = { file = ["requirements/requirements_development.txt" | ||
] }} | ||
|
||
version = {attr = "directlfq.__version__"} | ||
|
||
[project.scripts] | ||
directlfq = "directlfq.cli:run" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.