Skip to content

Commit

Permalink
DOC: Annotate setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mih committed Mar 28, 2018
1 parent 7c5a645 commit 831e6c5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions setup.py
Expand Up @@ -3,16 +3,24 @@
from setuptools import setup

setup(
# basic project properties can be set arbitrarily
name="dmhelloworld",
author="The DataLad Team and Contributors",
author_email="team@datalad.org",
version='0.1',
description="demo DataLad module package",
# datalad command suite specs from here
install_requires=[
# in general datalad will be a requirement, unless the datalad extension
# aspect is an optional component of a larger project
'datalad',
],
entry_points = {
# 'datalad.modules' is THE entrypoint inspected by the datalad API builders
'datalad.modules': [
# the label in front of '=' is the command suite label
# the entrypoint can point to any symbol of any name, as long it is
# valid datalad interface specification (see demo in this module)
'hello=dmhelloworld:module_suite',
]
},
Expand Down

0 comments on commit 831e6c5

Please sign in to comment.