-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (30 loc) · 1.01 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
from setuptools import setup, find_packages
import os
import screwjack
setup(
name="screwjack",
version=screwjack.__version__,
description="ScrewJack is a tiny command line tool for manipulating modules.",
long_description="",
author="Xiaolin Zhang",
author_email="[email protected]",
url="https://github.com/DataCanvasIO/screwjack",
license='BSD',
install_requires=['click==0.6', 'jinja2>=2.7.2', 'requests>=2.2.1', 'python-dateutil==2.2', 'pytz>=2014.3'],
packages=['screwjack'],
include_package_data = True,
package_data = {
'': ['templates/basic/*', 'templates/hive/*', 'templates/pig/*', 'templates/emr_hive/*', 'templates/emr_pig/*']
},
scripts=[
'bin/screwjack'
],
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Utilities"
]
)