-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (40 loc) · 1.36 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
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = 'kgcpy'
version = "1.1.8"
description = "Aids in identifying the Koeppen-Geiger (KG) climatic zone for a given latitude and longitude of any location."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
'pillow',
'pandas',
]
license = {file = "LICENSE"}
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
]
authors = [
{name = "Xuanji Yu", email = "xuanjiy@bu.edu"},
{name = "Chelsey Bryant", email = "clb117@case.edu"},
{name = "Nicholas R. Wheeler", email = "nrw16@case.edu"},
{name = "Franz Rubel", email = "franz.rubel@vetmeduni.ac.at"},
{name = "Julian Ascencio Vasquez", email = "julian.ascencio@envision-digital.com"},
{name = "Roger H. French", email = "rxf131@case.edu"},
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
"Bug Tracker" = "https://github.com/cwru-sdle/kgcpy/issues"
"Source Code" = "https://github.com/cwru-sdle/kgcpy"
"Documentation" = "https://kgcpy.readthedocs.io"
[tool.setuptools.packages.find]
include = ["kgcpy*"]
[tool.setuptools_scm]