-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
88 lines (80 loc) · 2.52 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
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ['setuptools', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'envisage'
version = '7.0.3'
description = 'Extensible application framework'
readme = 'README.rst'
requires-python = '>= 3.8'
license = {file = 'LICENSE.txt'}
authors = [{name = 'Enthought', email = '[email protected]'}]
keywords = ['extensible', 'plugin', 'application', 'framework']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: User Interfaces',
]
dependencies = [
'apptools[preferences]>=5.3',
'pyface',
'setuptools',
'traits>=6.2',
'traitsui',
'importlib-resources>=1.1.0; python_version<"3.9"',
]
[project.entry-points.'envisage.plugins']
'envisage.core' = 'envisage.core_plugin:CorePlugin'
[project.entry-points.etsdemo_data]
demo_examples = 'envisage.examples._etsdemo_info:info'
[project.urls]
documentation = 'https://docs.enthought.com/envisage/'
repository = 'https://github.com/enthought/envisage'
issues = 'https://github.com/enthought/envisage/issues'
[tool.black]
line-length = 79
[tool.isort]
profile = 'black'
line_length = 79
order_by_type = false
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'ENTHOUGHT', 'FIRSTPARTY', 'LOCALFOLDER']
known_enthought = ['apptools', 'pyface', 'traits', 'traitsui']
[tool.setuptools.packages.find]
include = ['envisage*']
[tool.setuptools.package-data]
'envisage.examples' = ['demo/**']
'envisage.tests' = [
'bad_eggs/README.txt',
'bad_eggs/acme-bad/setup.py',
'bad_eggs/acme-bad/acme_bad/*.py',
'eggs/README.txt',
'eggs/acme-bar/setup.py',
'eggs/acme-bar/acme_bar/*.py',
'eggs/acme-baz/setup.py',
'eggs/acme-baz/acme_baz/*.py',
'eggs/acme-foo/setup.py',
'eggs/acme-foo/acme_foo/*.py',
'plugins/pear/*.py',
'plugins/banana/*.py',
'plugins/orange/*.py',
'preferences.ini',
]
'envisage.ui.tasks.tests' = ['data/*.pkl']
'envisage.ui.workbench' = [
'preferences.ini',
'images/*',
]
'envisage.ui.workbench.action' = [
'images/*',
]