-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
44 lines (40 loc) · 1017 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
[metadata]
name = simplewebsite
version = 0.0.1
author = Morgan Fouesneau
author_email = [email protected]
description = A simplified website generator
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license_file = LICENSE
url = https://github.com/gaia-unlimited/community-workshop3
project_urls =
Bug Tracker = https://github.com/gaia-unlimited/community-workshop3
Sourse Code = https://github.com/gaia-unlimited/community-workshop3
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
package_dir =
=src
packages = find:
python_requires= >=3.7
include_package_data = true
# Example of how to add dependencies:
install_requires =
importlib-metadata >= 2.0 ; python_version < "3.8"
markdown
pyyaml
[options.packages.find]
where = src
[options.extras_require]
docs =
markdown
test =
pytest
pytest-doctestplus
flake8
codecov
pytest-cov