Skip to content

Commit

Permalink
Use "whey" as the build backend.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Apr 6, 2021
1 parent d285be8 commit 7d75e3d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 80 deletions.
6 changes: 0 additions & 6 deletions MANIFEST.in

This file was deleted.

17 changes: 15 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [ "setuptools>=40.6.0", "wheel>=0.34.2",]
build-backend = "setuptools.build_meta"
requires = [ "whey",]
build-backend = "whey"

[project]
name = "repo_helper_github"
Expand Down Expand Up @@ -32,6 +32,19 @@ conda-channels = [ "repo-helper",]
extras = "all"
license-key = "MIT"

[tool.whey]
base-classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control :: Git",
"Typing :: Typed",
]
python-versions = [ "3.6", "3.7", "3.8", "3.9",]
python-implementations = [ "CPython", "PyPy",]
platforms = [ "Windows", "macOS", "Linux",]
license-key = "MIT"

[project.entry-points."repo_helper.command"]
repo_helper_github = "repo_helper_github.cli:github"

Expand Down
1 change: 1 addition & 0 deletions repo_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ version: '0.6.0'
license: 'MIT'
short_desc: "Manage GitHub repositories with repo-helper."

use_whey: true
enable_conda: False
min_coverage: 85

Expand Down
44 changes: 0 additions & 44 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,50 +6,6 @@
# * mypy
# * options.entry_points

[metadata]
name = repo_helper_github
version = 0.6.0
author = Dominic Davis-Foster
author_email = dominic@davis-foster.co.uk
license = MIT License
keywords = github, repo-helper
long_description = file: README.rst
long_description_content_type = text/x-rst
platforms = Windows, macOS, Linux
url = https://github.com/repo-helper/repo_helper_github
project_urls =
Documentation = https://repo_helper_github.readthedocs.io/en/latest
Issue Tracker = https://github.com/repo-helper/repo_helper_github/issues
Source Code = https://github.com/repo-helper/repo_helper_github
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Version Control :: Git
Typing :: Typed

[options]
python_requires = >=3.6.1
zip_safe = False
include_package_data = True
packages = find:

[options.packages.find]
exclude =
doc-source
tests
tests.*

[mypy]
python_version = 3.6
namespace_packages = True
Expand Down
28 changes: 0 additions & 28 deletions setup.py

This file was deleted.

0 comments on commit 7d75e3d

Please sign in to comment.