aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-09-15 10:24:30 +0200
committerMatěj Cepl <mcepl@cepl.eu>2023-09-15 12:32:02 +0200
commit0adc5528b928c9a256518a190da7fff12669e2a9 (patch)
tree1f8a1d5ad04943d77dce12b1f6b5a304e5d4278a
parent3347931505f581b9225e67541d096d4e54b1d244 (diff)
downloadjustice-0adc5528b928c9a256518a190da7fff12669e2a9.tar.gz
Add pyproject.toml
-rw-r--r--.gitignore1
-rw-r--r--pyproject.toml34
2 files changed, 35 insertions, 0 deletions
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 <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"
+