forked from rhettg/BlueOx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·40 lines (35 loc) · 1.1 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
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import glob
from distutils.core import setup
PACKAGES = [
'blueox',
'blueox.contrib',
'blueox.contrib.django',
'blueox.contrib.celery',
'blueox.contrib.flask']
def get_init_val(val, packages=PACKAGES):
pkg_init = "%s/__init__.py" % PACKAGES[0]
value = '__%s__' % val
fn = open(pkg_init)
for line in fn.readlines():
if line.startswith(value):
return line.split('=')[1].strip().strip("'")
setup(
name='%s' % get_init_val('title'),
version=get_init_val('version'),
description=get_init_val('description'),
long_description=open('README').read(),
classifiers=["Topic :: System :: Logging", "Topic :: System :: Monitoring"],
author=get_init_val('author'),
author_email=get_init_val('author_email'),
url=get_init_val('url'),
license=get_init_val('license'),
package_data={'': ['LICENSE', 'NOTICE', 'README', 'README.md']},
scripts=glob.glob("bin/*"),
install_requires=['pyzmq','msgpack_python'],
requires=['pyzmq','msgpack_python'],
packages=PACKAGES
)