Skip to content

Commit

Permalink
remove _datalad_buildsupport usage
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-monch committed Apr 7, 2023
1 parent bd384a8 commit 5a78c10
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,20 @@

import versioneer

from _datalad_buildsupport.setup import BuildManPage


# Give setuptools a hint to complain if it's too old a version
# 30.3.0 allows us to put most metadata in setup.cfg
# Should match pyproject.toml
SETUP_REQUIRES = ['setuptools >= 30.3.0']

# This enables setuptools to install wheel on-the-fly
SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else []


cmdclass = {
'build_manpage': BuildManPage
}


setup(
name="datalad_metalad",
version=versioneer.get_version(),
cmdclass=cmdclass,
cmdclass=versioneer.get_cmdclass(),
setup_requires=SETUP_REQUIRES,
packages=[
'datalad_metalad',
Expand All @@ -44,8 +38,7 @@
'datalad_metalad.pathutils',
'datalad_metalad.pathutils.tests',
'datalad_metalad.tests',
'datalad_metalad.metadatatypes',
'_datalad_buildsupport'
'datalad_metalad.metadatatypes'
],
package_dir={
'datalad_metalad.pipeline': 'datalad_metalad/pipeline'
Expand Down

0 comments on commit 5a78c10

Please sign in to comment.