-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
39 lines (36 loc) · 1.19 KB
/
setup.cfg
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
[metadata]
name = IsoCor
version = attr: isocor.__version__
author = Pierre Millard, Baudoin Délépine, Matthieu Guionnet
author_email = [email protected]
description = IsoCor: Isotope Correction for mass spectrometry labeling experiments
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/MetaSys-LISBP/IsoCor/
classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
packages = find:
include_package_data = True
python_requires = >=3.7
install_requires =
pandas >= 0.17.1,
scipy >= 0.12.1
[options.entry_points]
console_scripts =
isocorcli = isocor.ui.isocorcli:start_cli
gui_scripts =
isocor = isocor.ui.isocorgui:start_gui
[options.extras_require]
testing =
pytest>=7.1.2
tox>=3.25.0