-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (47 loc) · 1.41 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
[build-system]
requires = ['setuptools', 'wheel']
build-backend = "setuptools.build_meta"
[project]
name='untanglepyut'
dynamic = ["version"]
description = 'XML to Ogl Object Model'
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', 'graphical shapes', 'python', 'xml']
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 = [
'untangle==1.2.1',
'codeallybasic>=1.9.0',
'codeallyadvanced>=1.3.3',
'pyutmodelv2>=2.2.3',
'ogl>=3.6.7',
]
[project.optional-dependencies]
test = [
'mypy==1.14.0',
'mypy-extensions==1.0.0',
'types-Deprecated==1.2.9.20240311',
'html-testRunner~=1.2.1',
]
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/untanglepyut'
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.package-data]
untanglepyut = ['py.typed']
[tool.setuptools.dynamic]
version = {attr = 'untanglepyut.__version__'}