File: test_reformat_COMPLETE_PROJECT_A_.toml

package info (click to toggle)
python-pyproject-parser 0.13.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,432 kB
  • sloc: python: 3,086; makefile: 5
file content (39 lines) | stat: -rw-r--r-- 981 bytes parent folder | download | duplicates (8)
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
[project]
name = "spam"
version = "2020.0.0"
description = "Lovely Spam! Wonderful Spam!"
requires-python = ">=3.8"
keywords = [ "bacon", "egg", "Lobster Thermidor", "sausage", "tomatoes",]
classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Python",]
dependencies = [ 'django>2.1; os_name != "nt"', 'django>2.0; os_name == "nt"', "gidgethub[httpx]>4.0.0", "httpx",]
dynamic = []

[[project.authors]]
email = "hi@pradyunsg.me"

[[project.authors]]
name = "Tzu-Ping Chung"

[[project.maintainers]]
name = "Brett Cannon"
email = "brett@python.org"

[project.urls]
homepage = "example.com"
documentation = "readthedocs.org"
repository = "github.com"
changelog = "github.com/me/spam/blob/master/CHANGELOG.md"

[project.scripts]
spam-cli = "spam:main_cli"

[project.gui-scripts]
spam-gui = "spam:main_gui"

[project.entry-points."spam.magical"]
tomatoes = "spam:main_tomatoes"

[project.optional-dependencies]
test = [ "pytest<5.0.0", "pytest-cov[all]",]

[tool]