-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (56 loc) · 1.62 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
[build-system]
requires = ['setuptools', 'wheel']
build-backend = "setuptools.build_meta"
[project]
name='pyutplugins'
dynamic = ["version"]
description = 'Pyut Plugins'
readme = "README.md"
license = {text = 'GNU AFFERO GENERAL PUBLIC LICENSE'}
authors = [{name = 'Humberto A. Sanchez II', email = '[email protected]'}]
maintainers = [{name = 'Humberto A. Sanchez II', email = '[email protected]'}]
keywords = ['pyut', 'python', 'plugin']
classifiers = [
"Programming Language :: Python",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
'codeallybasic>=1.8.5',
'codeallyadvanced>=1.3.3',
'pyutmodelv2>=2.2.2',
'ogl>=3.6.2',
'oglio>=2.3.4',
'wxPython>=4.2.2',
'antlr4-python3-runtime==4.13.1',
'orthogonal>=1.3.1',
'pyforcedirectedlayout>=0.80.6',
'pyorthogonalrouting>=1.3.1',
'pyimage2pdf>=1.0.3',
]
[project.optional-dependencies]
test = [
"html-testRunner~=1.2.1",
"buildlackey==1.7.0",
"mypy==1.14.0",
"mypy-extensions==1.0.0",
"typing_extensions==4.10.0",
"types-Deprecated==1.2.9.20240311",
"click==8.1.8",
]
deploy = [
"wheel==0.45.1",
"setuptools==75.7.0",
"twine==6.0.1",
"build==1.2.2.post1",
]
[project.urls]
Repository = 'https://github.com/hasii2011/pyutplugins'
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.package-data]
pyutplugins = ['py.typed']
[tool.setuptools.dynamic]
version = {attr = 'pyutplugins.__version__'}