File: setup.cfg

package info (click to toggle)
python-processview 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,192 kB
  • sloc: python: 1,362; makefile: 6
file content (51 lines) | stat: -rw-r--r-- 1,233 bytes parent folder | download | duplicates (2)
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
[metadata]
name = processview
version = attr: processview.__version__
author = data analysis unit
author_email = henri.payno@esrf.fr
description = Simple helper to provide user feedback about dataset processing
long_description = file: README.rst
license = MIT
classifiers =
    Development Status :: 5 - Production/Stable
    Environment :: Console
    Environment :: MacOS X
    Environment :: Win32 (MS Windows)
    Environment :: X11 Applications :: Qt
    Intended Audience :: Education
    Intended Audience :: Science/Research
    License :: OSI Approved :: MIT License
    Natural Language :: English
    Operating System :: MacOS
    Operating System :: Microsoft :: Windows
    Operating System :: POSIX
    Programming Language :: Cython
    Programming Language :: Python :: 3
    Topic :: Scientific/Engineering :: Physics
    Topic :: Software Development :: Libraries :: Python Modules

[options]
zip_safe = True
python_requires = >=3.6
packages = find:
install_requires =
    setuptools
    packaging
    wheel
    silx>=1.0


[options.package_data]
processview.resources =
    gui/icons/*.png
    gui/icons/*.svg

[options.extras_require]
test =
    pytest
doc =
    Sphinx
full =
    %(doc)s
    %(test)s
    PyQt5