-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (66 loc) · 1.77 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
[tool.black]
line-length = 88
exclude = '''
/(
\.git
| \.mypy_cache
| \.pytest_cache
| build
| dist
| venv
)/
'''
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "sensebook"
author = "Mads Marquart"
author-email = "[email protected]"
home-page = "https://github.com/madsmtm/sensebook/"
requires = [
"attrs>=18.2.0",
"beautifulsoup4",
]
description-file = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Communications :: Chat",
"Topic :: Documentation",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.5, <4.0"
keywords = "Facebook FB Messenger Library Documentation Sans-IO"
license = "BSD 3-Clause"
[tool.flit.metadata.urls]
Repository = "https://github.com/madsmtm/sensebook/"
[tool.flit.metadata.requires-extra]
test = [
"pytest",
"pytest-mock",
"pytest-raises",
"pytest-travis-fold",
]
dev = [
"black",
]
sync = [
"requests",
]