-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.12 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'Fang-CMS'
version = '2024.01.25'
description = 'A Blog CMS written in Flask'
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
]
license = {file = "LICENSE"}
authors = [
{ name="Tyler Gautney", email="tyler.gautney@codedragon.dev"},
]
readme='README.md'
requires-python = ">=3.11"
dependencies = [
'Flask',
'Flask-SQLAlchemy',
'MarkupSafe',
'mistune==2.0.2',
'psycopg2-binary',
'pycryptodomex',
'pyotp',
'python-dotenv',
'pywarp',
'segno',
]
[tool.setuptools]
packages = ["Fang"]
[project.optional-dependencies]
production = ["gunicorn"]
[project.urls]
Homepage = 'https://github.com/LinuxDragon57/Fang-CMS'