Skip to content

Commit

Permalink
Remove build-system from pyproject.toml config (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersy005 authored Dec 3, 2020
1 parent 8484841 commit cb173e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,3 @@
line-length = 100
target-version = ['py38']
skip-string-normalization = true

[build-system]
requires = ["setuptools>=41.2", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""The setup script."""

Expand All @@ -9,12 +9,6 @@

with open('README.md') as f:
long_description = f.read()

USE_SCM_VERSION = {
'version_scheme': 'post-release',
'local_scheme': 'dirty-tag',
}

setup(
maintainer='Xdev',
maintainer_email='[email protected]',
Expand Down Expand Up @@ -52,6 +46,10 @@
'Source': 'https://github.com/NCAR/jupyter-forward',
'Tracker': 'https://github.com/NCAR/jupyter-forward/issues',
},
use_scm_version=USE_SCM_VERSION,
use_scm_version={
'version_scheme': 'post-release',
'local_scheme': 'dirty-tag',
},
setup_requires=['setuptools_scm', 'setuptools>=30.3.0'],
zip_safe=False,
)

0 comments on commit cb173e8

Please sign in to comment.