Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 36 additions & 36 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
[tool.poetry]
name = "astral"
version = "2.0.1"
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",
]
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"
[build-system]
requires = ["poetry>=1.0.0b1"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "astral"
version = "2.0.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",
]
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"

[build-system]
requires = ["poetry>=1.0.0b1"]
build-backend = "poetry.masonry.api"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = astral
version = 2.0.1
version = 2.0.2
description = Calculations for the position of the sun and moon.
description-file = README.rst
keywords = sun, moon, sunrise, sunset, dawn, dusk
Expand Down
2 changes: 1 addition & 1 deletion src/astral/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"dms_to_float",
]

__version__ = "2.0.1"
__version__ = "2.0.2"
__author__ = "Simon Kennedy <[email protected]>"


Expand Down
2 changes: 1 addition & 1 deletion src/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Simon Kennedy"
copyright = "2009-2020, %s" % author
version = "2.0"
release = "2.0.1"
release = "2.0.2"

# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
Expand Down