-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (45 loc) · 1.24 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "projectsmigrator"
version = "0.0.2"
description = "Migrates one or more ZenHub workspaces to a Github Project"
authors = [
{ name = "Dylan Jay", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = [
"github",
"project management",
"zenhub",
"migration",
"sync",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.7"
dependencies = [
"requests>2",
"gql",
"aiohttp",
"docopt",
]
[project.urls]
"Homepage" = "https://github.com/pretagov/projectsmigrator"
"Bug Tracker" = "https://github.com/pretagov/projectsmigrator/issues"
changelog = "https://github.com/pretagov/projectsmigrator/blob/master/CHANGELOG.md"
[project.scripts]
projectsmigrator = "projectsmigrator:main"
[tool.black]
line-length = 99
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']