-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
38 lines (33 loc) · 1.04 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
[metadata]
name = linuxforhealth-packaging
version = attr: linuxforhealth.packaging.__version__
url = https://github.com/LinuxForHealth/python-packaging
description = Sample Integrations for PyPI and GitHub Actions
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache 2.0 License
platform = any
keywords = linuxforhealth, packaging
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Intended Audience :: Healthcare Industry
Intended Audience :: Developers
Intended Audience :: Information Technology
[options]
package_dir =
= src
python_requires = >=3.9
packages = find_namespace:
zip_safe = False
[options.packages.find]
where = src
[options.extras_require]
dev = pytest >=7.1, <8.0;flake8 >=4.0, <5.0;autopep8 >=1.6, <2.0;isort >= 5.10, <6.0
[flake8]
max-line-length=120
recursive = true
aggressive = 3