forked from maguowei/starred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.23 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
[tool.poetry]
name = "starred"
version = "4.3.0"
description = "creating your own Awesome List used GitHub stars!"
authors = ["maguowei <[email protected]>"]
homepage = "https://github.com/maguowei/starred"
repository = "https://github.com/maguowei/starred"
documentation = "https://github.com/maguowei/starred"
keywords = ["GitHub starred", "starred"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
]
include = ["README.md"]
readme = "README.md"
license = "MIT"
[tool.poetry.scripts]
starred = "starred.starred:starred"
[tool.poetry.dependencies]
python = "^3.7"
click = "^8.1.3"
"requests" = "^2.28.2"
"github3.py" = "^3.2.0"
gql = "^3.4.0"
aiohttp = "^3.8.3"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"