-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (28 loc) · 903 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
33
34
import os
from setuptools import setup, find_packages
def get_version():
basedir = os.path.dirname(__file__)
with open(os.path.join(basedir, 'goonj/version.py')) as f:
locals = {}
exec(f.read(), locals)
return locals['VERSION']
raise RuntimeError('No version info found.')
setup(
name='goonj',
version=get_version(),
packages=find_packages(exclude=['tests', 'samples']),
install_requires=[
'yml==0.0.1',
'request==0.0.26',
'PyYAML==3.12',
'requests==2.18.4',
'pre-commit==1.7.0',
'pre-commit-hooks==1.2.3',
'croniter-0.3.5'
],
url='',
license='BSD',
author='sohit kumar,bkp',
author_email='[email protected],[email protected]',
test_suite="tests",
description='A python library to enable easy alerting services across multiple channels.')