-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
31 lines (27 loc) · 804 Bytes
/
Pipfile
File metadata and controls
31 lines (27 loc) · 804 Bytes
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
setuptools = "*"
hetpy = {path = "."}
twine = "*"
coverage = "*"
coverage-badge = "*"
wheel = "*"
pandas = "*"
matplotlib = "*"
python-igraph = "*"
pdoc = "*"
[dev-packages]
[requires]
python_version = "3.10"
[scripts]
test = "coverage run -m unittest discover tests"
coverage = "coverage report -m"
coverage_badge = "coverage-badge -o coverage.svg"
build_docs = "python docs/make.py"
build_demo = "jupyter nbconvert --to markdown demo/hetPyDemo.ipynb --TagRemovePreprocessor.remove_cell_tags='{\"hide_cell\"}'"
upload_test = "twine upload --skip-existing --repository testpypi dist/hetpy-1.* --u __token__"
upload_prod = "twine upload --skip-existing dist/hetpy-1.* --u __token__"
build = "python setup.py sdist"