-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
46 lines (41 loc) · 937 Bytes
/
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
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1
[files]
packages =
pyjac
pyjac.core
pyjac.functional_tester
pyjac.performance_tester
pyjac.pywrap
pyjac.libgen
pyjac.kernel_utils
pyjac.tests
pyjac.examples
pyjac.schemas
extra_files =
setup.py
README.md
LICENSE
CITATION.md
CHANGELOG.md
CONTRIBUTING.md
citation.jsonld
nose.cfg
requirements.txt
optional-requirements.txt
[flake8]
max-line-length=85
[pep8]
max-line-length=85
[nosetests]
verbosity=3
exclude-dir=pyjac/tests/test_utils/
pyjac/tests/lib/
pyjac/functional_tester/
pyjac/performance_tester/
logging-filter=pyjac
tc-file=test_setup.py
tc-format=python