-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (28 loc) · 924 Bytes
/
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
[build-system]
requires = ['setuptools', 'wheel']
build-backend = "setuptools.build_meta"
[project]
name='oglio'
dynamic = ["version"]
description = 'External Pyut Persistence'
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', 'xml']
dependencies = [
'wxPython==4.2.2',
'codeallybasic>=1.8.0',
'codeallyadvanced>=1.3.3',
'pyutmodelv2>=2.2.2',
'ogl>=3.6.1',
'untanglepyut>=2.6.2',
]
[project.urls]
Repository = 'https://github.com/hasii2011/oglio'
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.package-data]
oglio = ['py.typed']
[tool.setuptools.dynamic]
version = {attr = 'oglio.__version__'}