-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 986 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "views-py"
version = "2.0.0"
authors = [
{ name="Braedyn L" },
]
description = "Views and related utilities for generic sequence types."
readme = "README.md"
license = { text="MIT License" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["view", "views", "windowing", "sequences", "sequence-viewer"]
[project.urls]
"Homepage" = "https://github.com/braedynl/views-py"
"Source" = "https://github.com/braedynl/views-py"
"Bug Tracker" = "https://github.com/braedynl/views-py/issues"
[tool.setuptools.package-data]
"*" = ["*.pyi", "py.typed"]