1[metadata]
2name = astral
3version = 2.2
4description = Calculations for the position of the sun and moon.
5description-file = README.rst
6keywords = sun, moon, sunrise, sunset, dawn, dusk
7author = Simon Kennedy
8author-email = sffjunkie+code@gmail.com
9home-page = https://github.com/sffjunkie/astral
10license = Apache-2.0
11classifiers =
12	Intended Audience :: Developers
13	Programming Language :: Python
14	Programming Language :: Python :: 3 :: Only
15	Programming Language :: Python :: 3.6
16	Programming Language :: Python :: 3.7
17	Programming Language :: Python :: 3.8
18	Programming Language :: Python :: 3.9
19project_urls =
20	Documentation = https://astral.readthedocs.io/en/stable/index.html
21	Source = https://github.com/sffjunkie/astral
22	Issues = https://github.com/sffjunkie/astral/issues
23
24[options]
25zip_safe = True
26package_dir =
27	=src
28packages = astral
29python_requires = >=3.6
30install_requires =
31	pytz
32	dataclasses;python_version=="3.6"
33tests_require =
34	freezegun
35	pytest==5.0.1
36	tox
37
38[egg_info]
39tag_build =
40tag_date = 0
41
42