diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..aefea6a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[project] +name = "simple-invoice-generator" +version = "0.2.0" +description = "Simple invoice generator for freelancers and small businesses" +readme = "README.md" +authors = [{name = "Torsten Ueberschar", email = "tu@uesome.de"}] +requires-python = ">=3.10" + +classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers, Freelancers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.10", +] + + +dependencies = [ + 'PyYAML', + 'Jinja2', + 'xhtml2pdf', + 'Markdown' +] + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project.scripts] +invoice = "main:main" \ No newline at end of file