-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1018 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 sys
from distutils.core import setup
import setuptools
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errcode = pytest.main(self.test_args)
sys.exit(errcode)
setup(
name='easy_job',
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
version='0.2.5',
description='A lightweight background task runner',
author='Mahdi Zareie',
install_requires=["retrying",
"pika",
"pika_pool"],
author_email='[email protected]',
url='https://github.com/inb-co/easy-job',
keywords=['worker', 'task runner', 'lightweight job runner'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)