-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (42 loc) · 1.17 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
[tool.poetry]
name = "LAMP-cortex"
version = "0.0.0"
license = "BSD-3-Clause"
description = "The Cortex data analysis toolkit for the LAMP Platform."
authors = ["Division of Digital Psychiatry at Beth Israel Deaconess Medical Center <[email protected]>"]
readme = "README.md"
homepage = "https://docs.lamp.digital"
documentation = "https://docs.lamp.digital"
repository = "https://github.com/BIDMCDigitalPsychiatry/LAMP-cortex"
keywords = ["LAMP Cortex"]
packages = [
{ include = "cortex" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/issues"
[tool.poetry.scripts]
cortex = 'cortex.feature_types:_main'
[tool.poetry.dependencies]
python = "^3.8"
LAMP-core = "^2021.5.18"
DateTime = "^4.3"
numpy = "^1.20.3"
pandas = "^1.2.4"
altair = "^4.1.0"
tzwhere = "^3.0.3"
geopy = "^2.1.0"
similaritymeasures = "^0.4.4"
fastdtw = "^0.3.4"
sklearn = "^0.0"
pytz = "^2021.1"
compress-pickle = "^2.0.1"
pyyaml = "^5.4.1"
pymongo = "^4.1.1"
seaborn = "^0.11.1"
matplotlib = "^3.4.1"
statsmodels = "^0.12.2"
scipy = "^1.6.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"