-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
115 lines (107 loc) · 2.32 KB
/
setup.cfg
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[metadata]
name = pymbe
description = A pythonic Model-based Engineering framework based on SysML v2
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/bjorncole/pymbe
project_urls =
Bug Tracker = https://github.com/bjorncole/pymbe/issues
Changelog = https://github.com/bjorncole/pymbe/blob/master/CHANGELOG.md
CI = TBD
Documentation = TBD
Releases = https://github.com/bjorncole/pymbe/releases
Source Code = https://github.com/bjorncole/pymbe
author = Bjorn Cole
author_email = [email protected]
license = GPLv3
keywords =
Model-based, SysML, Engineering
license_file = LICENSE
classifiers =
Development Status :: 1 - Planning
Framework :: Jupyter
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python
Topic :: Scientific/Engineering
[options]
python_requires = >=3.6
install_requires =
ipyelk >=2.0,<3
ipytree >=1.0,<2
jupyterlab >=3.0,<4
matplotlib
networkx >=2.0,<3
numpy >=1.20,<2
openmdao >=3.0,<4
pyld
rdflib
rdflib-jsonld
ruamel.yaml
package_dir =
= src
include_package_data = True
zip_safe = False
[options.extras_require]
develop =
ansi2html
black
coverage
isort
pytest
pytest-asyncio
pytest-cov
pytest-html
pytest-xdist
thirdparty =
bqplot
ipycytoscape
all =
%(develop)s
%(thirdparty)s
[options.packages.find]
where =
src
[flake8]
exclude =
.git
__pycache__
envs
extend-ignore = E203, W503
max-line-length = 99
[isort]
profile = black
known_first_party = pymbe
ensure_newline_before_comments = True
force_grid_wrap = 0
include_trailing_comma = True
line_length = 99
multi_line_output = 3
skip_glob =
tests/fixtures/**
envs/**
src_paths =
src/pymbe/**
tests/**
use_parentheses = True
[tool:pytest]
log_cli = False
log_cli_level = DEBUG
junit_family = xunit2
addopts =
-vv
--ff
--pyargs pymbe
--cov pymbe
--cov-report term-missing:skip-covered
--cov-report html:build/htmlcov
--cov-report xml:build/cov.xml
--html build/pytest.html
--self-contained-html
--junitxml build/pytest.xunit.xml
testpaths =
src/
tests/
norecursedirs =
envs/*
scripts/*