-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
23 lines (20 loc) · 1.03 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
# --------------------( LICENSE )--------------------
# Copyright (c) 2022-2023 Alexis Pietak & Cecil Curry.
# See "LICENSE" for further details.
#
# --------------------( SYNOPSIS )--------------------
# Project-wide pip and setuptools configuration, containing miscellaneous
# project metadata *NOT* already provided by a more appropriate top-level file
# (typically either "setup.py" or "MANIFEST.in").
#
# Welcome to setuptools hell, where only twenty distinct files in twenty
# distinct formats suffice to distribute a single project.
# ....................{ WHEEL }....................
# Metadata specific to the third-party "wheel" package used to produce
# platform-specific binary distributions of this project.
[metadata]
# Relative filename of the file defining this project's license.
license_file = LICENSE
# Relative filename of the file describing this project.
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8