Firts upload
This commit is contained in:
commit
fae5555503
184 changed files with 19239 additions and 0 deletions
56
pyproject.toml
Normal file
56
pyproject.toml
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
[build-system]
|
||||
requires = ["flit_core >=3.2,<4"]
|
||||
build-backend = "flit_core.buildapi"
|
||||
|
||||
[project]
|
||||
name = "cuchulu"
|
||||
authors = [{name = "Antonio de la Rosa", email = "antonio.delarosa@cuchulu.com"}]
|
||||
readme = "README.md"
|
||||
version = "1.0.36"
|
||||
description = "A simple framework using bottle and mako"
|
||||
# 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",
|
||||
"itsdangerous"
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Home = "https://git.cuchulu.com/cuchulu/cuchulufm/"
|
||||
Documentation = "https://docs.cuchulu.com/cuchulu/"
|
||||
|
||||
[project.scripts]
|
||||
cuchulu = "cuchulu.console:start"
|
||||
cuchuludb = "cuchulu.libraries.db.dbadmin:start"
|
||||
cuchulucm = "cuchulu.scripts.create_module:start"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
testpaths = ["tests"]
|
||||
filterwarnings = [
|
||||
"error",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue