-
Notifications
You must be signed in to change notification settings - Fork 95
/
pyproject.toml
75 lines (66 loc) · 1.98 KB
/
pyproject.toml
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
[project]
name = 'traitsui'
description = 'Traits-capable user interfaces'
readme = 'README.rst'
requires-python = '>=3.7'
authors = [{name='Enthought', email='info@enthought.com'}]
keywords = ['gui', 'traits', 'traitsui', 'pyqt', 'pyside', 'wxpython']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
dependencies = [
'traits>=6.2',
'pyface>=8.0',
'importlib-metadata>=3.6; python_version<"3.8"',
]
license = {file = "LICENSE.txt"}
version = "8.0.0"
[project.entry-points.'traitsui.toolkits']
qt = 'traitsui.qt:toolkit'
qt4 = 'traitsui.qt:toolkit'
wx = 'traitsui.wx:toolkit'
null = 'traitsui.null:toolkit'
[project.entry-points.'etsdemo_data']
demo = 'traitsui.extras._demo_info:info'
[project.optional-dependencies]
docs = ['enthought-sphinx-theme', 'sphinx', 'sphinx-copybutton', 'configobj']
editors = ['numpy', 'pandas']
examples = ['apptools', 'h5py', 'numpy', 'pandas', 'pillow', 'tables']
pyqt5 = ['pyqt5', 'pygments']
pyqt6 = ['pyqt6', 'pygments']
pyside2 = ['pyside2', 'pygments']
pyside6 = ['pyside6', 'pygments']
test = ['packaging', 'numpy']
wx = ['wxPython>=4', 'numpy']
[project.urls]
source = 'https://github.com/enthought/traitsui'
docs = 'https://docs.enthought.com/traitsui'
[build-system]
requires = ['setuptools>=61', 'wheel']
build-backend = 'setuptools.build_meta'
[tool.black]
line-length = 79
[tool.isort]
profile = 'black'
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'ENTHOUGHT', 'FIRSTPARTY', 'LOCALFOLDER']
known_enthought = ['apptools', 'pyface', 'traits']
line_length = 79
order_by_type = false
[tool.setuptools]
packages = ['traitsui']
[tool.setuptools.package-data]
traitsui = [
'examples/demo/*',
'examples/demo/*/*',
'examples/demo/*/*/*',
'extras/images/*',
'image/library/*.zip',
'images/*',
'wx/images/*',
'qt/images/*',
'testing/data/*',
]