-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1.22 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
[project]
name = "AM-Nihoul-website"
version = '0.8.3'
authors = [
{name = "Pierre Beaujean", email = "[email protected]"},
]
description = "AM-Nihoul-website, a small website for an association with not intent of being something else."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
'flask',
'Flask-SQLAlchemy',
'Flask-Uploads @ git+https://github.com/maxcountryman/flask-uploads.git@f66d7dc93e684fa0a3a4350a38e41ae00483a796',
'sqlalchemy-utils',
'python-slugify',
'Flask-WTF',
'email_validator',
'Flask-Login',
'Flask-APScheduler',
'simplegmail>=3.0',
'bootstrap-flask',
'Flask-Alembic',
'Flask-Limiter',
'Pillow',
'bs4'
]
[project.optional-dependencies]
dev = [
"flake8",
"flake8-quotes",
"autopep8",
"bump2version"
]
[tool.setuptools]
packages = ['AM_Nihoul_website']