forked from toastdriven/littleworkers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 774 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='littleworkers',
version='0.3.2',
description='Little process-based workers to do your bidding.',
author='Daniel Lindsley',
author_email='[email protected]',
long_description=open('README.rst', 'r').read(),
url='https://github.com/toastdriven/littleworkers',
py_modules = ['littleworkers'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)