Skip to main content

setup.cfg generator

Project description

Installation

$ [sudo] pip install setupcfg-generator

Features

[metadata] files/environment variables
name current directory basename or $NAME
classifiers classifiers.txt, $CLASSIFIERS
description description.txt, $DESCRIPTION
keywords keywords.txt, $KEYWORDS
long_description README.md/README.rst, $LONG_DESCRIPTION
long_description_content_type text/markdown if long_description is .md file
version version.txt, $VERSION
url $URL
[options] files/environment variables
install_requires requirements.txt
packages setuptools.find_packages()result, folders with __init__.py
py_modules python files in a current directory
scripts bin/* or scripts/* files

files can be in the current directory or any subdirectory

Examples

project-name.py/
├── bin
|   └── script
├── classifiers.txt
├── description.txt
├── subfolder/keywords.txt
├── requirements.txt
├── module.py
├── package
|   └── __init__.py
├── README.md
├── scripts
|   └── script
├── setup.py
├── subfolder/version.txt
$ cd path/to/project-name.py
$ export URL="https://github.com/owner/repo"
$ python -m setupcfg_generator
$ cat setup.cfg
[metadata]
name = project-name
version = 1.0.0
url = https://github.com/owner/repo
classifiers = file: classifiers.txt
description = file: description.txt
long_description = file: README.md
long_description_content_type = text/markdown
keywords = key1 key2

[options]
install_requires =
    req1
    req2
packages =
    pkgname
py_modules =
    module
scripts =
    bin/script
    scripts/script

Related

readme42.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

setupcfg-generator-2020.7.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page