summaryrefslogtreecommitdiff
path: root/setup.py
blob: 1c2014a2ca08b88b6d6154137a8c8e5cc38bf319 (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
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
'''pylibchorus setup'''

import os
from setuptools import setup, find_packages

VERSION = os.path.join(os.path.abspath(
    os.path.dirname(__file__)), 'pylibchorus', 'version.py')

exec(compile(open(VERSION).read(), VERSION, 'exec'))

def gen_build_num():
    from datetime import datetime
    now = datetime.now()
    return ''.join(str(x) for x in (now.year,
                                    now.month,
                                    now.day,
                                    now.hour,
                                    now.minute,
                                    now.second))


def read(fname):
    return "\n" + open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
    name="pylibchorus",
    version=__version__ + '.' + gen_build_num(),
    author="Kenny Ballou",
    author_email="kb@alpinenow.com",
    url="http://alpinenow.com",
    description=("Python Chorus API Library"),
    packages=find_packages(),
    test_suite="pylibchorus.tests",
    package_data={
    },
    long_description=read("README.markdown"),
    install_requires=[
        'requests',
        'setuptools',
    ],
    classifiers=[
        'Development Status :: 2 - Pre-Alpha',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Natural Language :: English',
        'Operating System :: POSIX :: Linux',
        'Operating System :: MacOS :: MacOS X',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Topic :: Internet :: WWW/HTTP',
        'Topic :: Software Development',
        'Topic :: Software Development :: Libraries',
        'Topic :: Utilities',
    ],
)