-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
46 lines (43 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
40
41
42
43
44
45
46
[metadata]
name = spc-io
version = file: VERSION
url = https://github.com/h2020charisma/spc-io
author = IDEAconsult Ltd.
author_email = dev-charisma@ideaconsult.net
description = SPC file format parser
long_description = file: README.pypi
long_description_content_type = text/markdown
license = MIT
license_files = LICENSE
keywords = Raman, spectroscopy
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Libraries
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = ~=3.8
install_requires =
numpy
pydantic~=2.0
pandas
[options.packages.find]
where = code
exclude =
tests*
[flake8]
max-line-length = 120
per-file-ignores =
__init__.py: F401, F403