generated from microsoft/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.65 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "fluxpype"
version = "0.2.0"
description = "A Python wrapper and installer for the FLUX modeling framework"
authors = ["Gilly <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gillyspace27/fluxpype"
repository = "https://github.com/gillyspace27/fluxpype"
documentation = "https://github.com/gillyspace27/fluxpype#readme"
keywords = ["FLUX", "modeling", "data analysis"]
[tool.poetry.dependencies]
python = "^3.8"
matplotlib = "^3.4"
numpy = "<2.0"
sunpy = "^4.0"
pandas = "^1.3"
tqdm = "^4.62"
astropy = "<7.0"
bs4 = "^0.0.1"
lxml = "^4.6"
zeep = "^4.1"
drms = "^0.6"
timeout-decorator = "^0.5"
rich = "^10.13"
pfsspy = "^1.2.0"
PyQt5 = "^5.15.11"
opencv_python = "^4.10.0.84"
[tool.poetry.extras]
FLUXcore = ["pexpect", "PyQt5"]
[tool.poetry.scripts]
flux-install = "fluxpype.unified_installer:main"
flux-config-run = "fluxpype.config_runner:run"
flux-config-view = "fluxpype.config_runner:view"
flux-config-edit = "fluxpype.config_runner:open_config"
flux-config-gallery = "fluxpype.config_runner:gallery"
[tool.pytest.ini_options]
addopts = "--cov-report xml:coverage.xml --cov src --cov-fail-under 0 --cov-append -m 'not integration'"
testpaths = ["tests"]
markers = [
"integration: marks as integration test",
"spark: marks tests which need Spark",
"slow: marks tests as slow",
"unit: fast offline tests",
]
[tool.black]
line-length = 120
fast = true
[tool.flake8]
max-line-length = 120
exclude = [".eggs", ".git", ".tox", "build", "dist", "tests", "swagger_client"]
ignore = ["E722", "B001", "W503", "E203"]