This repository has been archived by the owner on Feb 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (47 loc) · 1.54 KB
/
pyproject.toml
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
[tool.poetry]
name = "symmetric"
version = "3.4.4"
description = "A powerful tool to enable super fast module-to-API transformations. Learn in minutes, implement in seconds. Batteries included."
license = "MIT"
authors = ["Daniel Leal <dlleal@uc.cl>"]
maintainers = ["Daniel Leal <dlleal@uc.cl>"]
readme = "README.md"
homepage = "https://symmetric.daleal.dev/"
repository = "https://github.com/daleal/symmetric"
documentation = "https://symmetric.daleal.dev/docs/"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "symmetric" },
]
exclude = [
".github",
".flake8",
".pylintrc",
"assets",
"docs",
"environment.sh"
]
[tool.poetry.dependencies]
python = "^3.6"
flask = "^1.1.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
pylint = "^2.4.4"
[tool.poetry.plugins."console_scripts"]
symmetric = "symmetric.cli.core:dispatcher"
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/daleal/symmetric/issues"