-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
45 lines (38 loc) · 928 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
[metadata]
name = shell_database
version = attr: shell_database.__version__
author = José Coelho
license_files = LICENSE
home-page = https://github.com/jcoelho93/shell-database
description = A key value store for the terminal
long-description = file: README.md
long_description_content_type = text/markdown
platform = any
classifiers =
Programming Language :: Python :: 3.8
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: MIT License
setup_requires =
setuptools
install_requires =
{install_requires}
[options]
include_package_data = true
python_requires = >= 3.8*
test_suite = tests
[bdist_wheel]
python-tag = py3
[check]
metadata = true
restructuredtext = true
[sdist]
formats = gztar
[tool:pytest]
junit_family=xunit2
[flake8]
exclude = .git,__pycache__,build,dist,__init__.py
max-line-length = 110
max-complexity = 10
[coverage:run]
omit =
*/__init__.py