-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.42 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
[project]
name = "afscgap"
version = "2.0.1"
authors = [
{ name="A Samuel Pottinger", email="[email protected]" },
]
description = "Tools for interacting with the public bottom trawl surveys data from the NOAA AFSC GAP."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
]
dependencies = ["requests ~= 2.32.3", "fastavro ~= 1.9.7"]
[tool.setuptools.package-data]
afscgap = ["py.typed"]
[project.urls]
"Homepage" = "https://pyafscgap.org"
"Documentation" = "https://pyafscgap.org/devdocs/afscgap.html"
"Source" = "https://github.com/SchmidtDSE/afscgap"
"Issue Tracker" = "https://github.com/SchmidtDSE/afscgap/issues"
"Changelog" = "https://github.com/SchmidtDSE/afscgap#version-history"
[project.optional-dependencies]
dev = [
"build",
"nose2",
"mypy",
"pyflakes",
"pycodestyle",
"pdoc",
"twine",
"types-requests",
"mkdocs",
"mkdocs-windmill"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
".github",
"afscgap/test",
"afscgapviz",
"notebooks",
"Dockerfile",
"website",
"app"
]