Skip to content

Commit

Permalink
fix deprecated keys in setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed May 19, 2022
1 parent 6f33dfb commit 7493047
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=41.2", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
5 changes: 1 addition & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ url = https://github.com/conda-incubator/conda-lock
long_description_content_type = text/markdown
long_description = file: README.md
license = MIT
license_file = LICENSE
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Expand Down Expand Up @@ -45,9 +45,6 @@ install_requires =
typing-extensions
python_requires = >=3.6
packages = find:
setup_requires =
setuptools >= 41.2
setuptools_scm

[options.extras_require]
pip_support = poetry ==1.1.*
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from setuptools import setup


setup(use_scm_version=True)
setup(
name="conda_lock",
use_scm_version=True,
)

0 comments on commit 7493047

Please sign in to comment.