-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
66 lines (57 loc) · 1.38 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
[tool.poetry]
name = "crim_intervals"
version = "2.0.47"
description = "CRIM intervals package"
readme = "README.md"
authors = ["Richard Freedman <rfreedma@haverford.edu>"]
license = "creative commons"
packages = [
{ include = "crim_intervals" },
]
[tool.poetry.dependencies]
python = ">=3.9"
altair = "5.2.0"
certifi = "2020.12.5"
chardet = "4.0.0"
h11 = "0.14.0"
httpcore = "1.0.2"
httpx = "0.26.0"
idna = "3.1"
ipython = ">=7.23.1,<8.0"
joblib = "1.0.1"
jsonschema = ">=3.1"
lxml = "5.1.0"
matplotlib = "^3.9.2"
more-itertools = "8.7.0"
music21 = "8.3.0"
numpy = ">=1.20.2,<2.0.0"
pandas = ">=2.2.0"
statsmodels = "0.14.1"
plotly = "5.19.0"
plotly-express = "0.4.1"
pyarrow = ">=15.0.0"
pyvis = "0.1.9"
python-dateutil = "2.8.2"
python-louvain = "0.16"
pytz = "2021.1"
rfc3986 = "1.4.0"
seaborn = "0.13"
six = "1.16.0"
sniffio = "1.2.0"
textdistance = "4.2.1"
xlsxwriter = "3.0.2"
webcolors = "1.11.1"
requests = "2.31.0"
verovio = "4.1.0"
[[tool.poetry_bumpversion.replacements]]
files = ["crim_intervals/__init__.py"]
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[[tool.poetry_bumpversion.replacements]]
files = ["README.md"]
search = 'Current Version: {current_version}'
replace = 'Current Version: {new_version}'
[tool.poetry.dev-dependencies]
[build-system]
requires = ["setuptools","poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"