3 changed files with 60 additions and 138 deletions
@ -1,77 +0,0 @@
|
||||
accessible-pygments==0.0.5 |
||||
alabaster==1.0.0 |
||||
babel==2.17.0 |
||||
backports.tarfile==1.2.0 |
||||
beautifulsoup4==4.13.4 |
||||
build==1.2.2.post1 |
||||
certifi==2025.4.26 |
||||
cffi |
||||
charset-normalizer==3.4.2 |
||||
cryptography==46.0.5 |
||||
css-html-js-minify==2.5.5 |
||||
docutils==0.21.2 |
||||
flake8==7.2.0 |
||||
furo==2024.8.6 |
||||
id==1.5.0 |
||||
idna==3.10 |
||||
imagesize==1.4.1 |
||||
importlib_metadata==8.7.0 |
||||
iniconfig==2.1.0 |
||||
jaraco.classes==3.4.0 |
||||
jaraco.context==6.0.1 |
||||
jaraco.functools==4.1.0 |
||||
jeepney==0.9.0 |
||||
Jinja2==3.1.6 |
||||
keyring==25.6.0 |
||||
lxml==5.4.0 |
||||
markdown-it-py==3.0.0 |
||||
MarkupSafe==3.0.2 |
||||
mccabe==0.7.0 |
||||
mdurl==0.1.2 |
||||
more-itertools==10.7.0 |
||||
nh3==0.2.21 |
||||
packaging==25.0 |
||||
piccolo_theme==0.24.0 |
||||
pkginfo==1.12.1.2 |
||||
pluggy==1.6.0 |
||||
pycodestyle==2.13.0 |
||||
pycparser==2.22 |
||||
pydata-sphinx-theme==0.15.4 |
||||
pyflakes==3.3.2 |
||||
Pygments==2.19.1 |
||||
pyproject_hooks==1.2.0 |
||||
pytest==8.3.5 |
||||
python-slugify==8.0.4 |
||||
readme_renderer==44.0 |
||||
requests==2.32.4 |
||||
requests-toolbelt==1.0.0 |
||||
rfc3986==2.0.0 |
||||
rich==14.0.0 |
||||
roman-numerals-py==3.1.0 |
||||
SecretStorage==3.3.3 |
||||
snowballstemmer==3.0.1 |
||||
soupsieve==2.7 |
||||
Sphinx==8.2.3 |
||||
sphinx-autodocgen==1.3 |
||||
sphinx-basic-ng==1.0.0b2 |
||||
sphinx-book-theme==1.1.4 |
||||
sphinx-copybutton==0.5.2 |
||||
sphinx-epytext==0.0.4 |
||||
sphinx-material==0.0.36 |
||||
sphinx-rtd-theme==3.0.2 |
||||
sphinx_press_theme==0.9.1 |
||||
sphinx_wagtail_theme==6.5.0 |
||||
sphinxawesome-theme==5.3.2 |
||||
sphinxcontrib-applehelp==2.0.0 |
||||
sphinxcontrib-devhelp==2.0.0 |
||||
sphinxcontrib-htmlhelp==2.1.0 |
||||
sphinxcontrib-jquery==4.1 |
||||
sphinxcontrib-jsmath==1.0.1 |
||||
sphinxcontrib-qthelp==2.0.0 |
||||
sphinxcontrib-serializinghtml==2.0.0 |
||||
text-unidecode==1.3 |
||||
twine==6.1.0 |
||||
typing_extensions==4.13.2 |
||||
Unidecode==1.4.0 |
||||
urllib3==2.6.3 |
||||
zipp==3.22.0 |
||||
@ -0,0 +1,50 @@
|
||||
[build-system] |
||||
requires = ["setuptools>=45", "wheel"] |
||||
build-backend = "setuptools.build_meta" |
||||
|
||||
[project] |
||||
name = "pyTermTk-Env-Setup" |
||||
version = "0.0.0" |
||||
readme = {file = "README.md", content-type = "text/markdown"} |
||||
authors = [ |
||||
{name = "Eugenio Parodi", email = "ceccopierangiolieugenio@googlemail.com"}, |
||||
] |
||||
description = "pyTermTk dev env" |
||||
requires-python = ">=3.9" |
||||
|
||||
dependencies = [ |
||||
'pyTermTk', |
||||
'TTKode', |
||||
'Tlogg', |
||||
'TTkDesigner', |
||||
'dumbPaintTool', |
||||
] |
||||
|
||||
[project.urls] |
||||
Homepage = "https://github.com/ceccopierangiolieugenio/pyTermTk" |
||||
Documentation = "https://ceccopierangiolieugenio.github.io/pyTermTk-Docs/" |
||||
Repository = "https://github.com/ceccopierangiolieugenio/pyTermTk.git" |
||||
Issues = "https://github.com/ceccopierangiolieugenio/pyTermTk/issues" |
||||
Changelog = "https://github.com/ceccopierangiolieugenio/pyTermTk/blob/main/libs/pyTermTk/CHANGELOG.md" |
||||
|
||||
[project.optional-dependencies] |
||||
test = [ |
||||
"pytest>=8.3.4", |
||||
"flake8>=7.2.0", |
||||
"mypy>=1.15.0" |
||||
] |
||||
docs = [ |
||||
"Sphinx==8.2.3", |
||||
"sphinx-book-theme==1.1.4" |
||||
] |
||||
|
||||
[tool.setuptools] |
||||
packages = [] |
||||
|
||||
[tool.uv.sources] |
||||
pyTermTk = { path = "libs/pyTermTk", editable = true } |
||||
TTKode = { path = "apps/ttkode", editable = true } |
||||
Tlogg = { path = "apps/tlogg", editable = true } |
||||
TTkDesigner = { path = "apps/ttkDesigner", editable = true } |
||||
dumbPaintTool = { path = "apps/dumbPaintTool", editable = true } |
||||
|
||||
Loading…
Reference in new issue