-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1021 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sc_comment_scraper"
version = "0.0.1"
description = "Scrapes user comments from soundcloud.com via a tkinter GUI. Intended for use in music research."
authors = [
{ name = "Jake Jones", email = "jakejones1998@hotmail.co.uk" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"emoji >= 2.2.0",
"pandas >= 1.5.3",
"Pillow >= 9.4.0",
"selenium >= 4.8.0",
]
[project.optional-dependencies]
dev = [
"pytest >= 7.2.2",
"pytest-cov >= 4.0.0",
"flake8 >= 6.0.0",
"mypy >= 1.1.1"
]
[project.urls]
homepage = "https://github.com/jakejones2/sc_comment_scraper"
[tool.pytest.ini_options]
minversion = "7.2.2"
addopts = "--cov=app"
testpaths = [
"tests",
"integration",
]
[tool.mypy]
mypy_path = "src"