-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
42 lines (37 loc) · 1.11 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
[metadata]
name = rich-codex
version = attr: rich_codex.__version__
url = https://github.com/ewels/rich-codex
project_urls =
Documentation = https://github.com/ewels/rich-codex
Source Code = https://github.com/ewels/rich-codex
Issue Tracker = https://github.com/ewels/rich-codex/issues/
license = MIT
license_files = LICENSE
author = Phil Ewels
author_email = phil@ewels.co.uk
maintainer = Phil Ewels
maintainer_email = phil@ewels.co.uk
description = Generate rich images for the GitHub Action 'rich-codex'
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
[options]
packages = find:
package_dir =
=src
include_package_data = True
python_requires = >= 3.7
[options.entry_points]
console_scripts =
rich-codex = rich_codex.cli:main
[options.packages.find]
where = src
[options.package_data]
* = config-schema.yml
# Dependencies are in setup.py for GitHub's dependency graph.