Skip to content

Commit 4f84396

Browse files
Merge pull request #10 from RonnyPfannschmidt/fix-9-use-pyproject
fix #9 no longer use setup_requires
2 parents 982a6b3 + 848ea5a commit 4f84396

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
build/
66
dist/
77
__pycache__
8+
.tox/

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[build-system]
2+
requires = ["setuptools>=41.2.0", "wheel", "setuptools_scm>3"]
3+
4+
5+
[tool.setuptools_scm]

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ def main():
1717
py_modules=['iniconfig'],
1818
description='iniconfig: brain-dead simple config-ini parsing',
1919
long_description=readme,
20-
use_scm_version=True,
21-
setup_requires=['setuptools-scm'],
2220
url='http://github.com/RonnyPfannschmidt/iniconfig',
2321
license='MIT License',
2422
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],

0 commit comments

Comments
 (0)