-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
33 lines (30 loc) · 1003 Bytes
/
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
[build-system]
requires = ["setuptools>=65.6.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fiduswriter-ojs"
description = "A Fidus Writer plugin to connect to OJS."
version = "3.11.4"
readme = "README.md"
license = {text = "AGPL-3.0-or-later"}
authors = [
{email = "[email protected]", name = "Johannes Wilm"},
]
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dynamic = ["dependencies"]
[project.urls]
homepage = "https://www.fiduswriter.org/ojs-integration/"
repository = "https://github.com/fiduswriter/fiduswriter-ojs/"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}