-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.21 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (46 loc) · 1.21 KB
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
from setuptools import setup
setup(
name="encoding-music",
version="1.0.0",
description="Encoding Music Packages",
author="Richard Freedman",
author_email="rfreedma@haverford.edu",
install_requires=[
"altair==5.2.0",
"beautifulsoup4>=4.12.3",
"certifi==2020.12.5",
"crim_intervals==2.0.51",
"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",
],
python_requires=">=3.10",
)