summaryrefslogtreecommitdiff
path: root/setup.py
blob: 4c0cdfc7eeab7da426928dd6235bb03c4d58135b (plain)
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
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python

import os
import setuptools


def _clean_line(line):
    line = line.strip()
    line = line.split("#")[0]
    line = line.strip()
    return line


def read_requires(base):
    path = os.path.join('tools', base)
    requires = []
    if not os.path.isfile(path):
        return requires
    with open(path, 'rb') as h:
        for line in h.read().splitlines():
            line = _clean_line(line)
            if not line:
                continue
            requires.append(line)
    return requires


setuptools.setup(
    name='taskflow',
    version='0.0.1',
    author='OpenStack',
    license='Apache Software License',
    description='Taskflow structured state management library.',
    long_description='The taskflow library provides core functionality that '
                     'can be used to build [resumable, reliable, '
                     'easily understandable, ...] highly available '
                     'systems which process workflows in a structured manner.',
    author_email='openstack-dev@lists.openstack.org',
    url='http://www.openstack.org/',
    packages=setuptools.find_packages(),
    tests_require=read_requires('test-requires'),
    install_requires=read_requires('pip-requires'),
    classifiers=[
        'Development Status :: 4 - Beta',
        'License :: OSI Approved :: Apache Software License',
        'Operating System :: POSIX :: Linux',
        'Programming Language :: Python :: 2.6', ],
)