-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
33 lines (29 loc) · 924 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
[metadata]
name = runtime_dependency_manager
description = A simple Python module for managing dependencies at runtime
long_description = file: README.md
long_description_content_type = text/markdown
author = Carl Corliss
author_email = [email protected]
url = https://github.com/rabbitt/runtime_dependency_manager
license = GPL-3.0-or-later
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
[options]
packages = find:
install_requires =
packaging
python_requires = >=3.9
include_package_data = true
setup_requires = setuptools_scm
[options.package_data]
* = *.md, LICENSE
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool:pytest]
testpaths = tests