-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (67 loc) · 2.27 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "medievalization"
version = "0.2022.12.14.1"
description = "Not Civilization."
license = "GPL-3.0-only"
authors = ["Virinas-code <[email protected]>", "ZeBox <[email protected]>"]
maintainers = ["Virinas-code <[email protected]>"]
packages = [
{ include = "medievalization" },
]
homepage = "https://github.com/Virinas-code/medievalization"
repository = "https://github.com/Virinas-code/medievalization"
documentation = "https://github.com/Virinas-code/medievalization/wiki"
keywords = ["game"]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: French",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Real Time Strategy",
"Typing :: Typed"
]
readme = "README.md"
include = ["README.md", "LICENSE"]
[tool.poetry.dependencies]
python = "^3.11"
Flask = "^2.2.3"
google-auth = "^2.17.2"
google-auth-oauthlib = "^1.0.0"
google-auth-httplib2 = "^0.1.0"
google-api-python-client = "^2.84.0"
click = "^8.1.3"
coloredlogs = "^15.0.1"
verboselogs = "^1.7"
rich = "^13.3.3"
watchdog = "^3.0.0"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
medievalization-server = "medievalization.__main__:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Virinas-code/medievalization/issues"
"Contribute" = "https://github.com/Virinas-code/medievalization/pulls"
"Tests" = "https://github.com/Virinas-code/medievalization/actions"
"Safety" = "https://github.com/Virinas-code/medievalization/security"
"Statistics" = "https://github.com/Virinas-code/medievalization/pulse"
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"
flake8 = "^6.0.0"
black = "^23.3.0"
pycodestyle = "^2.10.0"
pylint = "^2.17.1"
jupyter = "^1.0.0"
notebook = "^6.5.3"
types-requests = "^2.28.11.17"
pretty-errors = "^1.2.25"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"