-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.33 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
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts] # Change this if you want to modify the name of the executable!
pybliotecario = "pybliotecario.pybliotecario:main"
[project.urls]
repository = "https://github.com/scarlehoff/pybliotecario"
[project]
name = "pybliotecario"
dynamic = ["version"]
authors = [
{ name = "juacrumar", email = "[email protected]" }
]
description = "Personal telegram bot to interact between your Telegram account and your computer"
readme = "readme.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = {text = "GPLv3"}
requires-python = ">=3.8"
dependencies = [
"requests",
"psutil"
]
[project.optional-dependencies]
facebook = ["flask", "requests_toolbelt"]
stonks = ["yahoo-fin", "pandas"]
arxiv = ["arxiv"]
weather = ["pyowm"]
wiki = ["wikipedia"]
github = ["pygithub"]
image = ["pillow"]
tests = ["numpy"]
full = ["pybliotecario[facebook, stonks, arxiv, weather, wiki, github, image, tests]"]
[tool.setuptools.dynamic]
version = {attr = "pybliotecario.__version__"}
[tool.black]
line-length = 100
skip_magic_trailing_comma = true
[tool.isort]
atomic = true
line_length = 100
profile = "black"
skip_gitignore = true
known_first_party = ["pybliotecario"]
force_sort_within_sections = true