From 6ac5cd8e84fd94d79a613b9be63559866cc43513 Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Tue, 1 Oct 2024 18:26:56 +0200 Subject: [PATCH] Added pyproject --- pyproject.toml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8c205e6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,54 @@ +[build-system] +requires = ["flit_core >=3.2,<4"] +build-backend = "flit_core.buildapi" + +[project] +name = "paramecio" +authors = [{name = "Antonio de la Rosa", email = "antonio.delarosa@salirdelhoyo.com"}] +readme = "README.md" +dynamic = ["version", "description"] + +classifiers=['Development Status :: 4 - Beta', + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Affero General Public License v3", + "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", + "Topic :: Internet :: WWW/HTTP :: HTTP Servers", + "Topic :: Internet :: WWW/HTTP :: WSGI", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Server", + "Topic :: Software Development :: Libraries :: Application Frameworks", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12" +] +requires-python = ">=3.9" +install_requires=[ + "bottle", + "pymysql", + "sqlalchemy", + "colorama", + "python-slugify", + "mako", + "pillow", + "arrow", + "bleach", + "argon2-cffi", + "oslo.concurrency", + "gunicorn" +] + +[project.urls] +Home = "https://git.cuchulu.com/paramecio/parameciofm/" +Documentation = "https://docs.cuchulu.com/paramecio/" + +[project.scripts] +paramecio2 = "paramecio.console:start" +paramecio2db = "parmecio.cromosoma.dbadmin:start" + +[tool.pytest.ini_options] +testpaths = ["tests"] +filterwarnings = [ + "error", +]