From 0adc5528b928c9a256518a190da7fff12669e2a9 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Fri, 15 Sep 2023 10:24:30 +0200 Subject: Add pyproject.toml --- .gitignore | 1 + pyproject.toml | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index ba855d5..63b41ad 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ __pycache__/update_db.cpython-38.pyc key_gen.py __pycache__/* config_data.py +templates.egg-info/ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8073fcf --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,34 @@ +[tool.poetry] +name = "justice" +version = "0.1.8" +description = "A python package to download company information from https://justice.cz/" +authors = ["Petr Šmerkl "] +license = "MIT" +readme = "README.md" +repository = "https://github.com/SveterCZE/justice" +keywords = [] +classifiers = [ + "Framework :: Flask", + "Programming Language :: Python :: 3", +] +# packages = [ +# { include = "justice", from = "." } +# ] +dependencies = [ + "requests", + "send2trash", + "lxml", + "flask", + "flask_sqlalchemy", + "flask_table", + "wtforms", +] + +[project.scripts] +justice = "main:app.run" +justice_build = "justice_build:main" + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + -- cgit