File: pyproject.toml

package info (click to toggle)
pytzdata 2020.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 128 kB
  • sloc: python: 858; makefile: 5
file content (34 lines) | stat: -rw-r--r-- 720 bytes parent folder | download | duplicates (2)
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
[tool.poetry]
name = "pytzdata"
version = "2020.1"
description = "The Olson timezone database for Python."
authors = [
    "Sébastien Eustace <sebastien@eustace.io>"
]
license = "MIT"

readme = "README.rst"

homepage = "https://github.com/sdispater/pytzdata"
repository = "https://github.com/sdispater/pytzdata"

classifiers = [
    "Operating System :: OS Independent",
    "Topic :: Software Development :: Libraries :: Python Modules"
]

[tool.poetry.dependencies]
python = "~2.7 || ^3.4"


[tool.poetry.dev-dependencies]
autopep8 = "^1.3"
cleo = "^0.6.5"
pytest = "^3.5"
tox = "^3.0"
black = {version = "^19.10b0", python = "^3.6"}


[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"