forked from rhettg/BlueOx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (28 loc) · 931 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (28 loc) · 931 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import glob
from distutils.core import setup
PACKAGES = ['blueox']
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='py-%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/*"),
packages=PACKAGES
)