-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 1.01 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
[build-system]
requires = ["setuptools", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "the-jira-cli"
description = "Manage Jira from the Terminal"
authors = [
{ "name" = "Jonathan Llovet", "email" = "jonathan.llovet@gmail.com" },
]
readme = "README.md"
keywords = ["Jira", "Atlassian", "Project", "Management", "CLI"]
license = { text = "MIT License" }
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
dynamic = ["version", "dependencies"]
[project.urls]
repository = "https://github.com/jllovet/the-jira-cli"
homepage = "https://github.com/jllovet/the-jira-cli"
[project.scripts]
jira = "the_jira_cli.jira:jira"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools_scm]