-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.cfg
42 lines (38 loc) · 981 Bytes
/
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
[metadata]
name = nionui
version = 9.0.0
author = Nion Software
author_email = [email protected]
description = Nion UI framework.
long_description = file: README.rst, CHANGES.rst, LICENSE.txt
url = https://github.com/nion-software/nionui
license = Apache-2.0
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages = find_namespace:
python_requires = >=3.11
install_requires =
imageio >=2.19.0
nionutils >=4.13.0,<5.0.0
numpy >=2.0,<3.0
[options.package_data]
nion.ui =
resources/*
py.typed
[options.entry_points]
console_scripts =
nionui = nion.ui.command:main
[options.packages.find]
include =
nion
nion.ui
nion.ui.test
nionui_app.none
nionui_app.nionui_examples.hello_world
nionui_app.nionui_examples.ui_demo
nionui