-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (39 loc) · 1.03 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
[build-system]
requires = ["flit_core >=3.6,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "openstats"
authors = [{name = "pmbrull", email = "[email protected]"}]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
]
readme = "README.md"
dependencies = [
"click==8",
"streamlit==1.5.0",
"pandas==1.3.5",
"requests==2.27.1",
"watchdog==2.1.6",
"levy==0.6.1",
"loguru==0.6.0",
"typer==0.4.0",
]
requires-python = ">=3.6"
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/pmbrull/open-stats"
[project.scripts]
openstats-theme = "openstats.cli:app"
[project.optional-dependencies]
test = [
"black==22.1.0",
"isort==5.10.1",
"pylint==2.12.2",
"pre-commit==2.17.0",
]