forked from nexpy/nexusformat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (55 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[metadata]
name = nexusformat
description = Python API to access NeXus data
long_description = file: README.md
long_description_content_type = text/markdown
url = https://nexpy.github.io/nexpy/
download_url = https://github.com/nexpy/nexusformat
author = Raymond Osborn
author_email = rayosborn@mac.com
license = Modified BSD License
license_files = COPYING
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
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
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Visualization
[options]
packages = find:
package_dir =
=src
python_requires = >=3.6
install_requires =
numpy
scipy
h5py >=2.9
hdf5plugin
[options.packages.find]
where = src
[options.package_data]
nexusformat = notebooks/*.ipynb
[options.entry_points]
console_scripts =
nexusformat = nexusformat.scripts.nexusformat:main
nxconsolidate = nexusformat.scripts.nxconsolidate:main
nxdir = nexusformat.scripts.nxdir:main
nxduplicate = nexusformat.scripts.nxduplicate:main
nxstack = nexusformat.scripts.nxstack:main
[options.extras_require]
testing = pytest
[bdist_rpm]
requires =
numpy
scipy
h5py
hdf5plugin