-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
46 lines (41 loc) · 1.2 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 = ess
author = Scipp contributors (https://github.com/scipp)
description = Neutron scattering tools for the European Spallation Source (ESS)
license = BSD
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
url = https://scipp.github.io/ess
project_urls =
Bug Tracker = https://github.com/scipp/ess/issues
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
install_requires =
plopp>=22.12.1
scipp>=23.08.0
scippneutron>=23.09.0
scippnexus>=23.04.1
python_requires = >=3.8
include_package_data = True
[options.extras_require]
all = ipympl; pythreejs; mpltoolbox
[options.packages.find]
where = src
[options.package_data]
plopp = py.typed
[flake8]
# See https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length
max-line-length = 88
extend-ignore = E203