-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (30 loc) · 868 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
35
36
import os
from setuptools import setup, find_packages
def get_version():
basedir = os.path.dirname(__file__)
with open(os.path.join(basedir, 'easyjoblite/version.py')) as f:
locals = {}
exec (f.read(), locals)
return locals['VERSION']
raise RuntimeError('No version info found.')
setup(
name='easyjoblite',
version=get_version(),
packages=find_packages(exclude=['tests', 'samples']),
install_requires=[
'kombu==3.0.35',
'click>=3.0.0',
'PyYaml'
],
url='',
license='BSD',
author='bkp',
author_email='[email protected]',
entry_points={
'console_scripts': [
'easyjoblite = easyjoblite.cli:main',
],
},
test_suite="tests",
description='A lite weight job scheduler which supports both automated and manual retry.'
)