-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (27 loc) · 885 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
[build-system]
requires = ['setuptools', 'wheel']
build-backend = "setuptools.build_meta"
[project]
name='ogl'
dynamic = ["version"]
description = 'External Pyut Graphical Shapes'
readme = "README.md"
license = {text = 'GNU AFFERO GENERAL PUBLIC LICENSE'}
authors = [{name = 'Humberto A. Sanchez II', email = 'Humbert.A.Sanchez.II@gmail.com'}]
maintainers = [{name = 'Humberto A. Sanchez II', email = 'Humbert.A.Sanchez.II@gmail.com'}]
keywords = ['pyut', 'graphical shapes', 'python',]
dependencies = [
'wxPython~=4.2.2',
'codeallybasic>=1.7.0',
'codeallyadvanced>=1.3.2',
'pyutmodelv2>=2.2.0',
]
[project.urls]
Repository = 'https://github.com/hasii2011/ogl'
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.package-data]
miniogl = ['py.typed']
ogl = ['py.typed']
[tool.setuptools.dynamic]
version = {attr = 'ogl.__version__'}