-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
38 lines (34 loc) · 977 Bytes
/
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
[metadata]
name = ms_reader
version = attr: ms_reader.__version__
author = Loïc Le Grégam
author_email = [email protected]
description = Package for parsing a Tracefinder or Skyline file containing processed Mass Spectrometry data
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/llegregam/MSReader
project_urls =
Bug Tracker = https://github.com/llegregam/MSReader/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License (GPL)
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.8
install_requires =
pandas >= 2.0.3
numpy >= 1.21.4
natsort >= 8.0.0
streamlit>=1.8.0
openpyxl >= 3.1.0
[options.entry_points]
console_scripts =
ms_reader = ms_reader.__main__:main
[options.extras_require]
testing=
pytest>=7.1.2
flake8>=4.0.1
tox>=3.25.0
[flake8]
max-line-length = 160