-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·49 lines (39 loc) · 1.29 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# !/usr/bin/env python3
# -*- coding: utf-8 -*-
# -*- mode: python -*-
import sys
from setuptools import setup
def main(args):
setup(
name="kiji-bento-cluster",
version="2.0.5",
# Lists the Python modules provided by this package:
packages=[
"bento",
],
# Mapping from Python package to source directory in the project:
package_dir={
"bento": "src/main/python/bento",
},
# Scripts to install in the bin/ folder and made available on the PATH:
scripts=[
"src/main/scripts/bento",
"src/main/scripts/create-hadoop-user",
"src/main/scripts/update-etc-hosts",
"src/main/scripts/update-user-hosts",
"src/main/scripts/add-bento-route",
],
# Dependencies on other Python packages:
install_requires=[
"docker-py",
],
# Metadata for upload to PyPI
author="WibiData",
author_email="user@kiji.org",
description="CDH and Datastax Enterprise docker single-node development cluster.",
license="Apache License 2.0",
keywords="bento,kijiproject,kiji,hadoop,hbase,cdh,cassandra",
url="http://www.kiji.org/",
)
if __name__ == "__main__":
main(sys.argv)