-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
44 lines (37 loc) · 902 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "qcarchive_webapps"
version = "0.0.1"
authors = [
{ name="Benjamin Pritchard", email="qcarchive@molssi.org" },
]
description='Public Webapps for the QCArchive project'
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"flask",
"flask-bootstrap",
"flask-cors",
"flask-assets",
"dash",
"dash-bootstrap-components",
"dash-bio",
"gunicorn",
"qcportal<0.50",
# TODO - remove?
"libsass",
"jsmin",
"pandas<1.5.0",
]
[tool.setuptools.package-data]
qcarchive_webapps = ['static/**', 'templates/**']
[project.urls]
"Homepage" = "https://github.com/MolSSI/QCArchiveWebapps"
"Bug Tracker" = "https://github.com/MolSSI/QCArchiveWebapps/issues"
[tool.black]
line-length = 120