-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.12 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
from os import path
from codecs import open
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
requirements = [
'enum',
'requests',
'animation'
]
test_requirements = [
'mock'
]
setup(
name='zeppelin_handy_helpers',
version='0.0.1-alpha2',
packages=['zeppelin_handy_helpers'],
url='https://github.com/sbilello/zeppelin-handy-helper',
download_url='https://github.com/sbilello/zeppelin-handy-helpers/archive/0.0.1-alpha2.tar.gz',
license='MIT',
author='Sergio Bilello',
author_email='[email protected]',
description='Console tool for zeppelin',
long_description=long_description,
scripts=[
'scripts/zhh'
],
install_requires=requirements,
test_suite='tests',
tests_require=test_requirements,
keywords=['helpers', 'console', 'zeppelin', 'notifier', 'monitoring'],
classifiers=['Development Status :: 3 - Alpha','Programming Language :: Python :: 2.7']
)