-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1.04 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
[tool.poetry]
name = "twacapic"
version = "0.8.1.2"
description = "A Twitter Academic API Client"
authors = ["Felix Victor Münch <f.muench@leibniz-hbi.de>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Leibniz-HBI/twacapic"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
]
exclude = [
"twacapic/twacapic_credentials.txt",
"*/.pytest_cache/*",
"twitter_keys.yaml",
"results"
]
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "^5.4.1"
TwitterAPI = "^2.6.9"
loguru = "^0.5.3"
schedule = "^1.0.0"
yagmail = "^0.14.245"
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
coverage = "^5.5"
pytest-console-scripts = "^1.1.0"
pytest-timeout = "^1.4.2"
python-language-server = {extras = ["all"], version = "^0.36.2"}
[tool.poetry.scripts]
twacapic = 'twacapic.main:run'
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--timeout=30"
testpaths = [
"tests",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"