-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
pyproject.toml
148 lines (139 loc) · 4.18 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# This is the Root pyproject.toml
# ===============================
#
# Poetry configuration
# --------------------
[tool.poetry]
name = "rs"
version = "7.0.0"
description = ""
authors = ["Brad Miller <[email protected]>"]
license = "MIT"
readme = "README.rst"
packages = [
# These are the components for the author server
{ include = "development" },
{ include = "rsptx/data_extract", from = "components" },
{ include = "rsptx/visualization", from = "components" },
{ include = "rsptx/db", from = "components" },
{ include = "rsptx/forms", from = "components" },
{ include = "rsptx/auth", from = "components" },
{ include = "rsptx/logging", from = "components" },
{ include = "rsptx/response_helpers", from = "components" },
{ include = "rsptx/validation", from = "components" },
{ include = "rsptx/templates", from = "components" },
{ include = "rsptx/cl_utils", from = "components" },
{ include = "runestone", from = "bases/rsptx/interactives" },
{ include = "rsptx/author_server_api", from = "bases" },
{ include = "rsptx/book_server_api", from = "bases" },
{ include = "rsptx/web2py_server", from = "bases" },
{ include = "rsptx/rsmanage", from = "bases" },
{ include = "rsptx/assignment_server_api", from = "bases" },
{ include = "rsptx/dash_server_api", from = "bases" },
{ include = "rsptx/lp_sim_builder", from = "components" },
{ include = "rsptx/configuration", from = "components" },
{ include = "rsptx/exceptions", from = "components" },
{ include = "rsptx/build_tools", from = "components" },
{ include = "rsptx/practice", from = "components" },
{ include = "rsptx/interactives/scripts", from = "bases" },
]
[tool.poetry.dependencies]
python = "^3.10"
aiofiles = "^0.8.0"
aioredis = "^2.0.1"
aiosqlite = "^0.18.0"
alembic = "^1.13.1"
altair = "^4.2.0"
asyncclick = "^8.1.3.4"
asyncpg = "^0.28.0"
beautifulsoup4 = "^4.0.0"
bleach = "^6.0.0"
boto3 = "^1.26.88"
botocore = "^1.29.87"
celery = "^5.2.7"
cogapp = "^3.3.0"
cryptography = "^3.0.0"
cssselect = ">= 1.0"
dash = { extras = ["celery", "diskcache"], version = "^2.7.0" }
dash-bootstrap-components = "^1.2.1"
diff-match-patch = ">= 20110725.1"
fastapi = "^0.103.0"
fastapi-login = "^1.9.0"
gunicorn = "^20.1.0"
ipyleaflet = "^0.19.2"
ipython = "^8.23.0"
Jinja2 = "^3.0.0"
jupyter-sphinx = "<0.5"
jupyterlab = "^4.2.4"
jupyterlite-sphinx = "^0.9.3"
lxml = "^5.0"
multi-await = "^1.0.4"
myst-parser = "^1.0.0"
numpy = ">= 1.9.2"
oauth2 = ">=1.9"
pandas = "^1.0.0"
paver = "^1.3.4"
pgcli = "^3.5.0"
pretext = "^2.8.2"
psycopg2-binary = "^2.9.3"
pycryptodome = "^3.18.0"
pydal = "^20230521.1"
pydantic = "^2.0.0"
pydantic-settings = "^2.0.3"
pyhumps = "^3.8.0"
pyjwt = "^2.0.0"
pylint = ">= 1.2.1"
python-dateutil = "^2.8.2"
python-dotenv = "^1.0.0"
pytz = ">= 2016.6.1"
redis = "^4.3.4"
requests = "^2.28.1"
rich = "^13.3.5"
scikit-learn = "^1.5.1"
Sphinx = "> 4.1.0,<6.0"
sphinx-reredirects = "^0.1.1"
sphinxcontrib-paverutils = "^1.17.0"
SQLAlchemy = "^1.4.0"
Starlette-WTF = "^0.4.3"
stripe = "^2.0.0"
toml = "^0.10.2"
tqdm = "^4.65.0"
uvicorn = "^0.27.0"
WTForms = "^3.0.0"
[tool.poetry.group.dev.dependencies]
black = "~= 23.0"
CodeChat = "^1.9.3"
contextlib2 = "^0.6.0"
coverage = "^6.0.0"
coveralls = "^3.0.0"
flake8 = "^4.0.0"
html5validator = "^0.3.0"
isort = "^5"
mock = "^4.0.0"
mypy = "^1"
# For the plugin.
polling2 = "^0.5.0"
pytest = "^8.0.0"
pyvirtualdisplay = "^3.0.0"
pywin32 = { version = ">= 301", markers = "sys.platform == 'win32'" }
selenium = "^3.0.0"
runestone = { path = "./projects/interactives", develop = true }
rsmanage = { path = "./projects/rsmanage", develop = true }
sphinx-click = "^4.4.0"
json2xml = "^3.21.0"
pytest-asyncio = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
buildptx = "rsptx.interactives.scripts.buildptx:build_book"
build = "rsptx.build_tools.build:cli"
# isort configuration
# -------------------
# See the [docs](https://pycqa.github.io/isort/docs/configuration/black_compatibility.html).
[tool.isort]
profile = "black"
[tool.ruff]
exclude = ["__pycache__", ".git", ".tox", ".venv", "build", "dist", "docs", "htmlcov", "node_modules", "venv"]
[tool.ruff.lint]
ignore = ["E501"]