forked from langeland/sirius
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
57 lines (54 loc) · 1.29 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "sirius"
readme = "README.md"
requires-python = ">=3.7,<3.8"
version = "0.0.0"
dependencies = [
"Flask==1.1.1",
"Flask-Bootstrap==3.3.7.1",
"Flask-Cors==3.0.8",
"Flask-Login==0.4.1",
"Flask-Migrate==2.5.2",
"Flask-SQLAlchemy==2.4.0",
"Flask-Script==2.0.6",
"Flask-Sockets==0.2.1",
"Flask-WTF==0.14.2",
"Jinja2==2.10.1",
"Mako==1.1.0",
"MarkupSafe==1.1.1",
"Pillow==6.1.0",
"SQLAlchemy==1.3.8",
"WTForms==2.2.1",
"Werkzeug==0.15.6",
"alembic==1.1.0",
"argparse==1.2.1",
"backports.ssl-match-hostname==3.7.0.1",
"blinker==1.4",
"gevent==1.4.0",
"gevent-websocket==0.10.1",
"greenlet==0.4.15",
"gunicorn==19.9.0",
"httplib2==0.13.1",
"itsdangerous==1.1.0",
"nose==1.3.7",
"oauthlib==3.2.2",
"psycopg2-binary==2.8.3",
"pycrypto==2.6.1",
"redis==3.3.8",
"requests==2.22.0",
"requests-oauthlib==1.3.1",
"selenium==3.141.0",
"six==1.12.0",
"twitter==1.18.0",
"websocket-client==0.56.0",
"honcho",
]
[project.optional-dependencies]
test = [
"snapshottest @ git+https://github.com/syrusakbary/[email protected]",
"Flask-Testing==0.7.1",
]
[tool.setuptools.packages.find]
include = ["sirius*"]