summaryrefslogtreecommitdiff
path: root/setup.py
blob: bc6abaea3fcb3aaf4ba25a54d1f3e34c6a08dbf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup, find_packages

import taskthread


setup(
    name='taskthread',
    version=taskthread.__version__,
    url='http://hpcloud.com',
    license='Apache',
    author='John Herndon',
    author_email='john.herndon@hp.com',
    description='Simple thread module to repetitively perform a task on a single thread',
    long_description=open('README.rst').read(),
    packages=find_packages()
)