-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (38 loc) · 1.08 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
[tool.poetry]
name = "release-exporter"
version = "1.1.2"
description = "Release exporter for GitHub and GitLab"
authors = ["Akshay Raj Gollahalli <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["changelog", "releases"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.9"
colorama = "^0.4.6"
tabulate = "^0.9.0"
click-uwescience = "^7.0.1"
requests = "^2.31.0"
python-dateutil = "^2.8.2"
git-url-parse = "^1.2.2"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.3,<9.0.0"
codecov = "^2.1.13"
black = ">=23.11,<25.0"
[tool.poetry.scripts]
rex = "release_exporter.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120