-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
44 lines (42 loc) · 1.22 KB
/
setup.cfg
File metadata and controls
44 lines (42 loc) · 1.22 KB
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
[metadata]
name = 3DCORE
author = Andreas J. Weiss
author_email = ajefweiss@gmail.com
description = Python implementations of the class of models running under the name of "3D Coronal Rope Ejection Model"
url = https://github.com/ajefweiss/py3DCORE
version = attr: py3dcore.__version__
keywords =
astrophysics
solar physics
space weather
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
[options]
python_requires = >= 3.9
install_requires =
heliosat[NUMBA]
numba
numpy
scipy
spiceypy>=5.1.2
[flake8]
max-line-length = 120
max-complexity = 12
allow-star-arg-any = yes
suppress-dummy-args = yes
exclude = .git,__pycache__,.eggs/,doc/,docs/,build/,dist/,archive/,.scripts
ignore = W503,ANN101
per-file-ignores =
__init__.py: F401