paramecio2fm/pyproject.toml

53 lines
1.6 KiB
TOML

[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "paramecio2"
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=[
"flask",
"pymysql",
"sqlalchemy",
"colorama",
"python-slugify",
"mako",
"pillow",
"arrow",
"bleach",
"argon2-cffi"
]
[project.urls]
Home = "https://git.cuchulu.com/paramecio/paramecio2fm/"
Documentation = "https://docs.cuchulu.com/paramecio2/"
[project.scripts]
paramecio2 = "paramecio2.console:start"
paramecio2db = "paramecio2.libraries.db.dbadmin:start"
paramecio2cm = "paramecio2.scripts.create_module:start"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
]