-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
44 lines (41 loc) · 1.05 KB
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
click = "==8.1.3"
tabulate = "==0.9.0"
pyyaml = "==6.0"
pytz = "==2022.6"
parsedatetime = "==2.6"
python-dateutil = "==2.8.2"
recurrent = "==0.4.1"
numpy = "==1.21.6"
pandas = "==1.3.5"
matplotlib = "==3.5.3"
xlsxwriter = "==3.0.3"
[dev-packages]
black = ">=22.10.0"
blacken-docs = ">=1.12.1"
isort = ">=5.10.1"
coverage = { version = ">=6.2", extras = ["toml"] }
pylint = "==2.15.5"
pytest = "==7.1.3"
pytest-cov = "==4.0.0"
twine = "==4.0.1"
hatch = "==1.6.2"
pre-commit = "==2.20.0"
mccabe = ">=0.7.0"
pyflakes = ">=2.5.0"
pycodestyle = ">=2.9.1"
flake8 = ">=5.0.4"
flake8-builtins = ">=2.0.0"
flake8-comprehensions = ">=3.10.0"
[scripts]
clean = 'python -c "import shutil;shutil.rmtree(\"dist\", True);shutil.rmtree(\"site\", True)"'
code-check = "hatch run code-check"
code-format = "hatch run code-format"
test = "hatch run cov"
build = "hatch build"
publish-to-test = "hatch publish --repo test --user __token__"
publish-to-main = "hatch publish --repo main --user __token__"