forked from github-tooling/ghtopdep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 949 Bytes
/
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
[tool.poetry]
name = "ghtopdep"
version = "0.3.12"
description = "CLI tool for sorting dependents repositories and packages by stars"
authors = ["Andriy Orehov <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.urls]
"Source" = "https://github.com/github-tooling/ghtopdep"
"Bug Tracker" = "https://github.com/github-tooling/ghtopdep/issues"
[tool.poetry.dependencies]
python = "^3.5"
selectolax = "^0.1.13"
tabulate = "^0.8.3"
click = "^7.0"
halo = "^0.0.26"
cachecontrol = "^0.12.5"
lockfile = "^0.12.2"
requests = "^2.22"
"github3.py" = "^1.3"
appdirs = "^1.4.3"
pipdate = "^0.3.4"
[tool.poetry.dev-dependencies]
better_exceptions = "^0.2.2"
pysnooper = "^0.3.0"
[tool.poetry.scripts]
ghtopdep = 'ghtopdep.ghtopdep:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}