-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (35 loc) · 1018 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sundialy"
version = "0.0.1"
author = "Ioannis Pantidis"
description = "A sundial library for python"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["sundial", "sundials", "analemmatic", "sun", "astronomy"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Typing :: Typed"
]
packages = [
{ include = "py.typed" },
]
package-data = [
{ include = "sundialy" },
{ include = "sundialy.tools" },
]
dependencies = [
"Shapely>=1.8.0",
"matplotlib>=3.5.0",
]
[project.urls]
"Homepage" = "https://github.com/AttackingOrDefending/sundialy"
"Documentation" = "https://sundialy.readthedocs.io"
"Bug Tracker" = "https://github.com/AttackingOrDefending/sundialy/issues"