-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "ask_lang"
version = "1.5.0"
description = "Ask is a modern open-source transpiled programming language, designed for building backend services and APIs. Ask reduces the amount of needed boilerplate code for setting up things like database connections and authentication to virtually zero lines."
authors = ["Edvard Busck-Nielsen <me@edvard.dev>"]
license = "GNU GPL v3.0"
readme = "README.md"
homepage = "https://ask.edvard.dev"
repository = "https://github.com/Buscedv/Ask"
keywords = ["ask", "programming language", "backend", 'api', 'rest', 'tool']
include = [
"LICENSE",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Flask",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Pre-processors",
]
[tool.poetry.dependencies]
python = "^3.8"
Flask = "^3.0.3"
Flask-Cors = ">=3.0.10,<6.0.0"
Flask-Limiter = "^3.8.0"
Flask-SQLAlchemy = "^3.1.1"
Jinja2 = ">=3.1.2"
limits = ">=3.13"
six = "^1.15.0"
SQLAlchemy = ">=2.0.16"
PyMySQL = "^1.0.2"
Flask-Selfdoc = "^1.2.3"
PyJWT = "^2.9.0"
toml = "^0.10.2"
waitress = "^3.0.0"
Paste = "^3.5.0"
tabulate = "^0.9.0"
abnex = "1.0.2"
requests = "^2.25.1"
coverage = "^7.6.1"
Flask-Mail = "^0.10.0"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
ask = 'ask_lang:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"