-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
48 lines (43 loc) · 1.24 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
# SPDX-FileCopyrightText: 2022 Stephan Lachnit <stephanlachnit@debian.org>
#
# SPDX-License-Identifier: CC0-1.0
[metadata]
name = dep5convert
version = 0.0.0
author = Stephan Lachnit
author_email = stephanlachnit@debian.org
description = module for converting DEP5-style copyright files
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/stephanlachnit/dep5convert
project_urls =
Source = https://github.com/stephanlachnit/dep5convert
Bug Tracker = https://github.com/stephanlachnit/dep5convert/issues
classifiers =
Development Status :: 1 - Planning
License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: OS Independent
[options]
include_package_data = true
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
headerparser
license-expression
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
dep5convert = dep5convert.cli:main
[options.extras_require]
docs =
sphinx
sphinx_rtd_theme
myst-parser
sphinx_paramlinks
sphinxcontrib.apidoc