-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (47 loc) · 1.57 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
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61.2.0", "wheel",
#"setuptools_scm[toml]>=3.4.3"
]
build-backend = "setuptools.build_meta"
[project]
name = "IssuerGHAction"
authors = [{name = "KOLANICH"}]
description = "A GitHub Action automating self-management of issues by their creators."
readme = "ReadMe.md"
keywords = ["open source", "ideas"]
license = {text = "Unlicense"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
]
urls = {Homepage = "https://gitlab.com/KOLANICH/issuer"}
requires-python = ">=3.4"
dependencies = [
"miniGHAPI", # @ https://github.com/KOLANICH-libs/miniGHAPI.py
"commonmark", # @ git+https://github.com/readthedocs/commonmark.py
"recommonmark", # @ git+https://github.com/readthedocs/recommonmark.git
"docutils",
"python-dateutil", # @ git+https://github.com/dateutil/dateutil.git
"ruamel.yaml", # @ hg+https://hg.code.sf.net/p/ruamel-yaml/code/
]
#dynamic = ["version"]
version = "0.0.1"
#[tool.setuptools_scm]
# tool.setuptools_scm doesn't work in GH actions because it does not clone
[project.optional-dependencies]
warnings = [
"python-crontab", # @ https://gitlab.com/doctormo/python-crontab.git
]
[project.scripts]
IssuerGHAction = "IssuerGHAction.__main__:main"
[tool.setuptools]
zip-safe = true
include-package-data = true
packages = ["IssuerGHAction"]