-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.36 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
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "baskref"
version = "1.0.0"
authors = [
{name="Dominik Zulovec Sajovic", email="dominik.zsajovic@gmail.com"},
]
keywords = ["basketball", "web scraper", "python"]
description = "baskRef is a tool to scrape basketball Data from the web."
readme = "README.md"
license = {file="LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests==2.28.1",
"beautifulsoup4==4.11.1",
"fake-useragent==1.1.1",
]
[project.urls]
"Homepage" = "https://github.com/orion512/basketball_scraper"
"Bug Tracker" = "https://github.com/orion512/basketball_scraper/issues"
"Project Board" = "https://github.com/users/orion512/projects/2/views/1"
[project.scripts]
baskref = "baskref:run_baskref"
[tool.black]
line-length = 79
target-version = ['py39']
exclude = '''
/(
\.toml
|\.sh
|\.git
|\.ini
|venv
|scripts
)/
'''
[tool.setuptools.packages.find]
include = ["baskref", "baskref.*"]
exclude = ["notebooks*"]
[tool.mypy]
ignore_missing_imports = true
[tool.check-manifest]
ignore = [
".travis.yml", "tests/*", "requirements_dev.txt",
"datasets", ".pre-commit-config.yaml", ".pylintrc", "pytest.ini",
"venv",
]