-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·37 lines (34 loc) · 1.16 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import errand_boy
package_name = 'errand_boy'
test_package_name = 'tests'
setup(
name='errand-boy',
version=errand_boy.__version__,
description="Establish a connection to the errand-boy deamon to execute \
commands without the memory overhead incurred by os.fork().",
author='Seán Hayes',
author_email='[email protected]',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords='os fork process memory celery',
url='https://github.com/greyside/errand-boy',
download_url='https://github.com/greyside/errand-boy',
license='BSD',
packages=find_packages(),
install_requires=['eventlet', 'six'],
tests_require=[
'mock==1.0.1'
],
include_package_data=True,
test_suite = test_package_name,
)