File: setup.py

package info (click to toggle)
datalad 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,132 kB
  • sloc: python: 69,299; sh: 1,521; makefile: 220
file content (25 lines) | stat: -rwxr-xr-x 668 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
# ## ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
#   See COPYING file distributed along with the DataLad package for the
#   copyright and license terms.
#
# ## ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##

from setuptools import setup

import versioneer
from _datalad_build_support.setup import (
    BuildConfigInfo,
    BuildManPage,
)

cmdclass = {
    "build_manpage": BuildManPage,
    # 'build_examples': BuildRSTExamplesFromScripts,
    "build_cfginfo": BuildConfigInfo,
    # 'build_py': DataladBuild
}
cmdclass = versioneer.get_cmdclass(cmdclass)

setup(cmdclass=cmdclass)