diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | pyproject.toml | 34 |
2 files changed, 35 insertions, 0 deletions
@@ -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 <petr.smerkl@whitecase.com>"] +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" + |