diff --git a/pyproject.toml b/pyproject.toml index e7d910a..cb19f2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] -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 "] +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" diff --git a/setup.cfg b/setup.cfg index a31ba08..f80b391 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/src/astral/__init__.py b/src/astral/__init__.py index cad884c..befd26b 100644 --- a/src/astral/__init__.py +++ b/src/astral/__init__.py @@ -68,7 +68,7 @@ "dms_to_float", ] -__version__ = "2.0.1" +__version__ = "2.0.2" __author__ = "Simon Kennedy " diff --git a/src/doc/conf.py b/src/doc/conf.py index 06258e5..a2fe91b 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -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.