-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
44 lines (40 loc) · 1 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "affine"
description = "Matrices describing affine transformation of the plane"
dynamic = ["version"]
authors = [
{name = "Sean Gillies", email = "[email protected]"},
]
readme = "README.rst"
keywords = ["affine", "transformation", "matrix"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering :: GIS",
]
license = {text = "BSD-3-Clause"}
requires-python = ">=3.7"
[project.optional-dependencies]
test = [
"pytest >=4.6",
"pytest-cov",
]
dev = [
"pydocstyle",
"flake8",
"coveralls",
]
[project.urls]
Source = "https://github.com/rasterio/affine"
[tool.flit.sdist]
include = [
"AUTHORS.txt",
"CHANGES.txt",
"LICENSE.txt",
]