-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
68 lines (60 loc) · 1.57 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
[metadata]
name = pybuildingenergy
version = 1.0.7
description = library to simulate builiding performance
author = Daniele antonucci
author_email = [email protected]
license = MIT
license_files = LICENSE.txt
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/EURAC-EEBgroup/pyBuildingEnergy/
project_urls =
Documentation = https://pybuildingenergy.readthedocs.io/en/latest/Overview/overview.html
Source = https://github.com/EURAC-EEBgroup/pyBuildingEnergy/
Changelog = https://pyscaffold.org/en/latest/changelog.html
# Tracker = https://github.com/pyscaffold/pyscaffold/issues
# Conda-Forge = https://anaconda.org/conda-forge/pyscaffold
# Download = https://pypi.org/project/PyScaffold/#files
# Twitter = https://twitter.com/PyScaffold
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
# Add here test requirements (semicolon/line-separated)
testing =
setuptools
pytest
pytest-cov
# setup.cfg
[tool:pytest]
minversion = 6.0
addopts = -ra -q
testpaths =
tests
norecursedirs =
dist
build
.tox
# [devpi:upload]
# # Options for the devpi: PyPI server and packaging tool
# # VCS export must be deactivated since we are using setuptools-scm
# no_vcs = 1
# formats = bdist_wheel
[flake8]
# Some sane defaults for the code style checker flake8
max_line_length = 88
extend_ignore = E203, W503
exclude =
.tox
build
dist
.eggs
docs/conf.py