forked from conda-forge/conda-smithy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (29 loc) · 1.02 KB
/
setup.py
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
26
27
28
29
30
31
32
33
#!/usr/bin/env python
from setuptools import setup
import versioneer
def main():
skw = dict(
name="nwb-extensions-smithy",
version=versioneer.get_version(),
description="A package to create extensions for NWB, and automate "
"their building with CI tools on Linux, macOS, and Windows.",
author="Ryan Ly",
author_email="[email protected]",
url="https://github.com/nwb-extensions/nwb-extensions-smithy",
entry_points=dict(
console_scripts=[
# "feedstocks = nwb_extensions_smithy.feedstocks:main",
"nwb-extensions-smithy = nwb_extensions_smithy.cli:main",
]
),
include_package_data=True,
packages=["nwb_extensions_smithy"],
scripts=['bin/smithy_init_all'],
# As nwb-extensions-smithy has resources as part of the codebase, it is
# not zip-safe.
zip_safe=False,
cmdclass=versioneer.get_cmdclass(),
)
setup(**skw)
if __name__ == "__main__":
main()