-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.53 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
[tool.poetry]
name = "sp-ask-school-data-crunching"
version = "0.1.2"
description = "Collection of scripts for data analytics of Ask Data Through LibraryH3lp API - metadata only"
authors = ["Guinslym <[email protected]>"]
homepage = "https://github.com/scholarsportal/sp_ask_school_data_crunching"
repository = "https://github.com/scholarsportal/sp_ask_school_data_crunching"
documentation = "https://github.com/scholarsportal/sp_ask_school_data_crunching#readme"
license = "MIT"
readme = "README.md"
keywords = ["libraryh3lp", "chat", "analytics", "scholars portal", "ask a librarian", "Scholars Portal", "OCUL"]
packages = [{include = "sp_ask_school_data_crunching"}]
classifiers = [
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix"
]
[tool.poetry.dependencies]
python = "^3.10"
lh3api = "^0.2.0"
sp-ask-school = "^0.3.9"
sp-lh3-constant-contact = "^0.1.6"
sp-ask-report-chats-per-school = "^0.1.4"
sp-ask-chats-utils = "^0.1.2"
python-dotenv = "^1.0.1"
pandas = "^2.2.3"
plotly = "^5.24.1"
numpy = "^2.1.3"
scipy = "^1.14.1"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pytest-sugar = "^1.0.0"
ipython = "^8.29.0"
ptpython = "^3.0.29"
pyclean = "^3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Add development tools configuration
[tool.black]
line-length = 88
include = '\.pyi?$'
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.poetry.scripts]
shell = "ptpython:main" # or "IPython:start_ipython"