forked from sffjunkie/astral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.04 KB
/
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
[tool.poetry]
name = "astral"
version = "2.2"
description = "Calculations for the position of the sun and moon."
keywords = ["sun", "moon", "sunrise", "sunset", "dawn", "dusk"]
authors = ["Simon Kennedy <[email protected]>"]
license = "Apache-2.0"
readme = "README.rst"
documentation = "https://astral.readthedocs.io/en/stable/index.html"
repository = "https://github.com/sffjunkie/astral"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
packages = [
{ include = "astral", from = "src"},
{ include = "doc", from = "src", format = "sdist"},
{ include = "test", from = "src", format = "sdist"},
]
[tool.poetry.dependencies]
python = "^3.6"
pytz = "*"
dataclasses = { version="*", python = "3.6"}
[tool.poetry.dev-dependencies]
freezegun = "*"
pytest = "5.0.1"
tox = "*"
pylint = "^2.4.4"
flake8 = "*"
[build-system]
requires = ["poetry>=1.0.0b1"]
build-backend = "poetry.masonry.api"