File: setup.cfg

package info (click to toggle)
python-nexpy 1.0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,836 kB
  • sloc: python: 13,880; xml: 7,531; makefile: 130; sh: 1
file content (82 lines) | stat: -rw-r--r-- 1,871 bytes parent folder | download
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[metadata]
name = NeXpy
description = A Python GUI to analyze 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/nexpy
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.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
    Topic :: Scientific/Engineering
    Topic :: Scientific/Engineering :: Visualization

[options]
packages = find:
package_dir =
    =src
python_requires = >=3.7
install_requires =
    nexusformat >= 1.0.7
    numpy
    scipy
    h5py >= 2.9
    qtpy >= 2.4
    qtconsole >= 5.4.3
    ipython
    ipykernel >= 6.15.2
    matplotlib
    lmfit >= 1.0.3
    pylatexenc
    ansi2html
    pillow
    mplcursors
    importlib-metadata; python_version<"3.10"
    setuptools

[options.packages.find]
where = src

[options.package_data]
nexpy.gui = resources/*.*, resources/*/*.*
nexpy.definitions = */*.xml
nexpy = examples/*.*, examples/*/*.*, examples/*/*/*.*, examples/*/*/*/*.*

[options.entry_points]
gui_scripts =
    nexpy = nexpy.nexpygui:main

[options.extras_require]
spec = spec2nexus
fabio = fabio
testing = pytest

[bdist_rpm]
requires = 
    nexusformat
    numpy
    scipy
    h5py
    qtpy
    qtconsole
    ipython
    matplotlib
    lmfit
    pylatexenc
    ansi2html
    pillow
    mplcursor