-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.22 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=69.0" ]
[project]
name = "faha"
version = "0.0.1"
description = "Fantasy Hockey Analysis."
readme = "README.md"
authors = [ { name = "David Deepwell", email = "[email protected]" } ]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"dill>=0.3.9",
"glom>=23.4.0",
"pandas>=2.0.0",
"pandas-stubs==2.2.2.240909",
"streamlit>=1.37.0",
"yahoo-oauth>=2.0",
]
optional-dependencies.dev = [
"flake8>=7.0",
"flake8-docstrings>=1.7",
"mypy>=1.8",
"pre-commit>=3.6",
"pylint>=3.0",
"pytest>=7.4",
]
scripts.get_league_info = "faha.league:extract_and_save_league_info"
scripts.initialize_tokens = "faha.oauth.client:initialize_keys"
scripts.input_league_id = "faha.league:input_league_id"
[tool.setuptools.packages.find]
where = [ "src" ]
[tool.setuptools.package-data]
"faha" = [ "py.typed" ]
[tool.pytest.ini_options]
testpaths = [ "tests" ]
[[tool.mypy.overrides]]
module = [ "dill.*" ]
ignore_missing_imports = true