forked from python-pendulum/pendulum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (30 loc) · 867 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
34
35
36
37
38
39
40
[tool.poetry]
name = "pendulum"
version = "2.0.4"
description = "Python datetimes made easy"
authors = ["Sébastien Eustace <[email protected]>"]
license = "MIT"
readme = 'README.rst'
homepage = "https://pendulum.eustace.io"
repository = "https://github.com/sdispater/pendulum"
documentation = "https://pendulum.eustace.io/docs"
keywords = ['datetime', 'date', 'time']
build = "build.py"
[tool.poetry.dependencies]
python = "~2.7 || ^3.4"
python-dateutil = "^2.6"
pytzdata = ">=2018.3"
# typing is needed for Python < 3.5
typing = { version = "^3.6", python = "<3.5" }
[tool.poetry.dev-dependencies]
pytest = "^3.4"
pytest-cov = "^2.5"
pytz = ">=2018.3"
babel = "^2.5"
cleo = "^0.6.1"
tox = "^3.0"
black = { version = "^18.4-alpha.0", python = "^3.6" }
pre-commit = "^1.10"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"