-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 846 Bytes
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
[tool.poetry]
name = "twitter-bot"
version = "0.1.0"
description = "A bot that monitors datasources for COVID-19 and posts on Twitter"
authors = ["Sergio Kef <sergiokef@gmail.com>"]
license = "Apache-2.0"
packages = [{include = "bot"}]
repository = "https://github.com/COVID2019-app/twitter-bot"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
python-dotenv = "^0.12.0"
sqlalchemy = "^1.3.15"
pandas = "^1.0.2"
psycopg2-binary = "^2.8.4"
tweepy = "^3.8.0"
country_converter = "^0.6.7"
emoji-country-flag = "^1.2.1"
[tool.poetry.scripts]
breaking-bot = "bot.breaking:main"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
isort = "^4.3.21"
flake8 = "^3.7.9"
seed-isort-config = "^2.1.0"
black = "^19.10b0"
pylint = "^2.4.4"
pre-commit = "^2.2.0"
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"