Browser and install GUI for cookiecutter templates

⌈⌋ ⎇ branch:  cookiedough


Artifact [b558a2a1bd]

Artifact b558a2a1bd2ea923d47d1fc7d33cab8a6fbc58076b16e07d476f9775ce241626:

  • Executable file setup.py — part of check-in [01853f4400] at 2021-03-24 09:08:27 on branch trunk — Enable replay option, add verbose setting, use full pluginconf config[] list structure now (select: and value: just the default), keep all _control and __private vars around; but omit them from default context for invocation. Add startup progressbar. (user: mario size: 755)

#!/usr/bin/env python3
# encoding: utf-8
# api: pip
# type: build
# title: config for setuptools
#
# Always prefer setuptools over distutils
#

from pluginconf.setup import setup

setup(
    #debug=1,
    fn="cookiedough/__init__.py",
    name="cookiedough",
    long_description="README.md",
    packages=["cookiedough"],
    package_dir={"": "."},
    package_data={
        "cookiedough": [
            "./*.json",
            "./*.patch",
            "./help/*.*",
        ],
    },
    include_package_data=True,
    entry_points={
        "console_scripts": [
            "cookiedough=cookiedough:main",
        ]
    },
    extras_require={
        "build": ["pluginconf","setuptools"],
        "unused": ["ttkthemes"]
    },
    universal=False
)