forked from conda-forge/conda-smithy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (28 loc) · 968 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
def main():
skw = dict(
name="conda-smithy",
version=versioneer.get_version(),
description="A package to create repositories for conda recipes, and automate "
"their building with CI tools on Linux, OSX and Windows.",
author="Phil Elson",
author_email="[email protected]",
url="https://github.com/conda-forge/conda-smithy",
entry_points=dict(
console_scripts=[
"feedstocks = conda_smithy.feedstocks:main",
"conda-smithy = conda_smithy.cli:main",
]
),
include_package_data=True,
packages=["conda_smithy"],
# As conda-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()