-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 810 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name="pypsn"
dynamic = ["version"]
readme = "README.md"
description="PosiStageNet parser"
requires-python = ">=3.8"
authors = [
{name = "vanous", email = "noreply@nodomain.com"},
]
maintainers = [
{name = "vanous", email = "noreply@nodomain.com"},
]
keywords = ["PSN", "PosiStageNet"]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"multicast_expert>=1.4.0",
]
[tool.setuptools]
packages = ["pypsn"]
[tool.setuptools.dynamic]
version = {attr = "pypsn.__version__"}
[project.urls]
Repository = "https://github.com/open-stage/python-psn"
Changelog = "https://github.com/open-stage/python-psn/blob/master/CHANGELOG.md"