-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.06 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
[project]
name = "zephyrus-sc2-parser"
dynamic = ["version"]
description = "Parser for SC2 replay files"
readme = "README.md"
license = "MIT License"
authors = [
{name = "Luke Holroyd", email = "hello@zephyrus.gg"},
]
maintainers = [
{name = "Luke Holroyd", email = "hello@zephyrus.gg"}
]
dependencies = [
'requests',
'mpyq',
'pytz'
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment :: Real Time Strategy"
]
requires-python = '>=3.8'
[project.urls]
homepage = "https://pypi.org/project/zephyrus-sc2-parser/"
repository = "https://github.com/ZephyrBlu/zephyrus-sc2-parser"
documentation = "https://github.com/ZephyrBlu/zephyrus-sc2-parser"
[project.scripts]
s2_cli = "zephyrus_sc2_parser.s2protocol_fixed.s2_cli:main"
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["zephyrus_sc2_parser"]
[tool.setuptools_scm]
normalize=true