-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1020 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
33
34
35
36
37
38
[tool.poetry]
name = "pydm"
version = "0.1.0"
description = "A Python CLI/package that converts DM files into Python modules and vice versa."
license = "LGPL-3.0-or-later"
authors = ["Kyle Oliver <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/56kyle/pydm"
repository = "https://github.com/56kyle/pydm"
keywords = [
"python",
"python-package",
"byond",
"dm",
"cli",
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
Sphinx = { version = "^5.0.2", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
[tool.poetry.scripts]
pydm = "pydm.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"