-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (33 loc) · 1.15 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pycodetool"]
[project]
name = "pycodetool"
version = "0.9.0"
description = "Parse and modify Python code."
readme = {file = "readme.md", content-type = "text/markdown"}
keywords = ["python", "code", "parsing", "development", "parser", "IronPython"]
requires-python = ">=3.0"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"hierosoft @ git+https://github.com/Hierosoft/hierosoft"
# ^ leave out .git to match other projects requiring it
# (prevents setuptools from having an unecessary conflict error)
]
authors = [
{name = "Jake Gustafson", email = "[email protected]"},
]
[project.optional-dependencies]
dev = ["nose", "nose-cover3"]
[project.urls]
"Homepage" = "https://github.com/Hierosoft/pycodetool"
[project.scripts]
changes = "pycodetool.changes:main"