-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
85 lines (78 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.black]
line-length = 90
include = '\.pyi?$'
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 90
ensure_newline_before_comments = true
[tool.pylint]
max-line-length = 90
[tool.poetry]
name = 'turbot'
version = "7.5.2"
license = 'MIT'
authors = [
'TheAstropath <theastropath@gmail.com>',
'lexicalunit <lexicalunit@lexicalunit.com>'
]
readme = 'README.md'
description = 'Provides a Discord client and utilities for everything Animal Crossing: New Horizons.'
keywords=['discord', 'turnip', 'bot', 'animal crossing', 'new horizons']
repository = 'https://github.com/theastropath/turbot'
homepage = 'https://github.com/theastropath/turbot'
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications :: Chat",
"Topic :: Games/Entertainment :: Simulation",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
packages = [
{ include = "turbot", from = "src" },
{ include = "turnips", from = "src" }
]
[tool.poetry.dependencies]
alembic = "^1.4.2"
click = "^7.1.2"
"discord.py" = "^1.3.4"
dunamai = "^1.2.0"
humanize = "^2.4.0"
hupper = "^1.10.2"
matplotlib = "^3.2.2"
numpy = "^1.18.5"
pandas = "^1.0.5"
psycopg2-binary = "^2.8.5"
pydantic = "^1.5.1"
python = '>=3.7,<4'
python-dateutil = "^2.8.1"
pytz = "^2020.1"
pyyaml = "^5.3.1"
sqlalchemy = "^1.3.17"
unidecode = "^1.1.1"
[tool.poetry.dev-dependencies]
beautifulsoup4 = "^4.9.1"
black = "^19.10b0"
callee = "^0.3.1"
coverage = "^5.1"
flake8 = "^3.8.3"
ipython = "^7.15.0"
isort = "^4.3.21"
lxml = "^4.5.1"
pytest = "^5.4.3"
pytest-asyncio = "^0.12.0"
pytest-freezegun = "^0.4.1"
pytest-mock = "^3.1.1"
pytest-mpl = "^0.11"
pytest-snapshot = "^0.4.1"
requests = "^2.24.0"
tox = "^3.15.2"
[tool.poetry.scripts]
turbot = 'turbot:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"