-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.9 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
[project]
requires-python = ">=3.7"
name = "attila"
version = "2.0"
description = "Attila Pelican Theme"
authors = [
{ name = "Arulraj Venni", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
'pelican',
'pelican-theme',
'markdown',
'theme',
'python',
'ghost',
]
classifiers = [
# See: https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Pelican :: Themes',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Other',
"Programming Language :: Python :: 3",
'Topic :: Internet :: WWW/HTTP',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: Markdown',
]
dependencies = [
"pelican >= 4.10.2",
"pelican-image-process >= 3.0.4",
"pelican-minify >= 2.0.0",
"pelican-neighbors >= 1.2.0",
"pelican-related-posts >= 1.0.0",
"pelican-seo >= 1.2.2",
"pelican-sitemap >= 1.2.0",
"pelican-statistics >= 1.0.0",
"pelican-webassets >= 2.1.0",
]
[project.urls]
"Homepage" = 'https://github.com/arulrajnet/attila'
"Documentation" = 'http://arulrajnet.github.io/attila'
"Repository" = 'https://github.com/arulrajnet/attila'
"Funding" = "https://github.com/sponsors/arulrajnet"
"Issues" = "https://github.com/arulrajnet/attila/issues"
"Releases" = "https://github.com/arulrajnet/attila/releases"
[tool.setuptools]
include-package-data = true
packages = [
"attila",
"attila.static",
"attila.templates",
]
[tool.setuptools.package-dir]
"attila" = "."
"attila.static" = "static"
"attila.templates" = "templates"
[tool.setuptools.package-data]
"*" = ["**"]