-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
60 lines (56 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
# NOTE: See https://packaging.python.org/en/latest/tutorials/packaging-projects/
# NOTE: See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
# NOTE: See https://packaging.python.org/en/latest/specifications/pyproject-toml/
[build-system]
requires = [
"setuptools", # NOTE: See https://setuptools.pypa.io/en/latest/userguide/
"setuptools_scm", # NOTE: See https://setuptools-scm.readthedocs.io/en/latest/usage/
]
build-backend = "setuptools.build_meta"
[project]
name = "PyGuymer3"
description = "A Python 3 module containing a bunch of random functions that I have written over the years"
dynamic = ["version"]
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "Thomas Guymer"}
]
maintainers = [
{name = "Thomas Guymer"}
]
classifiers = [ # NOTE: See https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Fortran",
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
]
dependencies = [ # NOTE: See "requirements.txt"
"cartopy",
"exifread",
"geojson",
"lxml",
"matplotlib",
"numpy",
"pillow",
"requests",
"scipy",
"shapely",
]
requires-python = ">=3.10"
[project.urls]
Documentation = "https://pyguymer3.readthedocs.io"
Homepage = "https://github.com/Guymer/PyGuymer3"
Issues = "https://github.com/Guymer/PyGuymer3/issues"
Funding = "https://github.com/sponsors/Guymer"
[tool.setuptools_scm]