forked from aldryncore/webservices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (27 loc) · 910 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
[build-system]
requires = ["setuptools", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "webservices/version.py"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
include = ["webservices*"]
[project]
name = "webservices.naudit"
description = "This is a fork from https://github.com/aldryncore/webservices. A web service library."
readme = "README.rst"
authors = [
{ name = "Jonas Obrist", email = "[email protected]" },
{ name = "Rafael Leira", email = "[email protected]" },
]
license = { text = "BSD License" }
dynamic = ["version"]
dependencies = ["itsdangerous"]
[project.urls]
"Homepage" = 'https://github.com/Naudit/webservices'
[project.optional-dependencies]
django = ["django", "requests"]
flask = ["flask", "requests"]
twisted = ["twisted"]
consumer = ["requests"]
tests = ["twisted", "requests", "django", "flask"]