From 07b0577d916c9757600e2c467a233821bb748a1b Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Thu, 30 May 2024 01:02:52 +0200 Subject: [PATCH] Added new files for new package format for pip --- pyproject.toml | 42 ++++++++++++++++++++++++++++++++++++++++++ setup.py | 1 - 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a155b1f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,42 @@ +name = "paramecio2" +version = "2.0.36" +description = "Simple Web Framework based in flask and Mako." +readme = "README.md" +license = {file = "LICENSE.txt"} +maintainers = [{name = "Antonio de la Rosa", email = "antonio.delarosa@salirdelhoyo.com"}] +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=[ + "flask", + "pymysql", + "sqlalchemy", + "coloram"', + "python-slugify", + "mako", + "pillow", + "arrow", + "bleach", + "argon2-cffi" +] +[project.urls] +Documentation = "https://docs.cuchulu.com/paramecio2/" +Source = "https://git.cuchulu.com/paramecio/paramecio2fm/" + +[project.scripts] +paramecio2 = "paramecio2.console:start" +paramecio2db = "parmecio2.libraries.db.dbadmin:start" + diff --git a/setup.py b/setup.py index 390f9e4..998439e 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,6 @@ setup(name='paramecio2', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Server', 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11',