forked from mtth/azkaban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.05 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
#!/usr/bin/env python
"""AzkabanCLI: a lightweight command line interface for Azkaban."""
from azkaban import __version__
from setuptools import find_packages, setup
setup(
name='azkaban',
version=__version__,
description=__doc__,
long_description=open('README.md').read(),
author='Matthieu Monsch',
author_email='[email protected]',
url='http://azkabancli.readthedocs.org/',
license='MIT',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
install_requires=[
'six>=1.6.1',
'docopt',
'requests>=2.4.0',
'urllib3',
],
entry_points={'console_scripts': [
'azkaban = azkaban.__main__:main',
'azkabanpig = azkaban.ext.pig:main',
]},
)