Skip to content

Commit

Permalink
Clean up install vs. build requirements (#34)
Browse files Browse the repository at this point in the history
- Exclude `wheel` and `setuptools` from package dependencies
- Exclude `packaging` from build dependencies; however, retain it as a package
  dependency since it is a valid runtime dependency
  • Loading branch information
jwilges authored Aug 10, 2021
1 parent 4d6f2bb commit 8d76a2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = [ "wheel", "setuptools", "packaging" ]
requires = [ "wheel", "setuptools" ]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
long_description = readme_text,
ext_modules = [mgrs],
packages = ['mgrs'],
install_requires = ['setuptools', 'wheel','packaging'],
install_requires = ['packaging'],
test_suite = 'tests.test_suite',
zip_safe = False,
classifiers = [
Expand Down

0 comments on commit 8d76a2a

Please sign in to comment.