Skip to content

Commit

Permalink
Set additional setup.cfg settings
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWilhelm committed Sep 8, 2018
1 parent ec0b4e5 commit 499fcd1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Expand Up @@ -11,6 +11,7 @@ Version 3.2
- *deprecated* use of lists with ``helpers.{modify,ensure,reject}``, issue #211
- Add support for ``os.PathLike`` objects in ``helpers.{modify,ensure,reject}``, issue #211
- Remove ``release`` alias in ``setup.cfg``, use ``twine`` instead
- Set ``project-urls`` and ``long-description-content-type`` in ``setup.cfg``, issue #216

Current versions
================
Expand Down
6 changes: 5 additions & 1 deletion setup.cfg
Expand Up @@ -4,8 +4,12 @@ description = Template tool for putting up the scaffold of a Python project
author = Florian Wilhelm
author-email = Florian.Wilhelm@gmail.com
license = MIT
url = https://pyscaffold.org/
url = https://github.com/blue-yonder/pyscaffold/
project-urls =
Documentation = https://pyscaffold.org/
Twitter = https://twitter.com/PyScaffold
long-description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Expand Down
2 changes: 1 addition & 1 deletion src/pyscaffold/api/__init__.py
Expand Up @@ -101,7 +101,7 @@ def __call__(self, *args, **kwargs):
DEFAULT_OPTIONS = {'update': False,
'force': False,
'description': 'Add a short description here!',
'url': 'https://pyscaffold.org/',
'url': 'https://github.com/blue-yonder/pyscaffold/',
'license': 'mit',
'version': pyscaffold.__version__,
'classifiers': ['Development Status :: 4 - Beta',
Expand Down
5 changes: 4 additions & 1 deletion src/pyscaffold/templates/setup_cfg.template
Expand Up @@ -8,8 +8,11 @@ description = ${description}
author = ${author}
author-email = ${email}
license = ${license}
url = ${url}
long-description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
url = ${url}
project-urls =
Documentation = https://pyscaffold.org/
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any

Expand Down

0 comments on commit 499fcd1

Please sign in to comment.