-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (42 loc) · 1.14 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
name = "rwar_ssg"
version = "1.0.0"
authors = [
{name = "Samina Rahman", email = "[email protected]"},
]
description = "A Simple Static Site Generator."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"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",
]
dependencies = [
# "stringcase ~=1.2.0",
"args ~=0.1.0",
"autopep8 ~=1.7.0",
"charset-normalizer ~=2.1.1",
"clint ~=0.5.1",
"dominate ~=2.7.0",
"idna ~=3.4",
"markdown2 ~=2.4.6",
"pycodestyle ~=2.9.1",
"pyfiglet ~=0.8.post1",
"requests ~=2.28.1",
"toml ~=0.10.2",
"urllib3 ~=1.26.12",
"yarg ~=0.1.9",
"pylint ~=2.15.5",
"black ~=22.10.0",
"virtualenv ~=20.16.6"
]
[project.urls]
"Homepage" = "https://github.com/saminarp/rwar"
"Bug Tracker" = "https://github.com/saminarp/rwar/issues"