-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 963 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
import os
parent_directory = os.path.abspath(os.path.dirname(__file__))
meta_files = {
'README.md': None,
'CLASSIFIERS.txt': None,
}
for filename in meta_files:
try:
current_file = open(os.path.join(parent_directory, filename))
meta_files[filename] = current_file.read()
current_file.close()
except IOError:
raise IOError('{0} not found.'.format(filename))
classifiers = meta_files['CLASSIFIERS.txt'].split('\n')
classifiers.remove('')
setup(name='django-webbugger',
version='0.11-distutils',
description='Basic webbugger/tracking beacon for django',
long_description=meta_files['README.md'],
classifiers=classifiers,
author='Brandon R. Stoner',
author_email='[email protected]',
url='http://github.com/LimpidTech/django-webbugger',
packages=['webbugger'],
keywords = 'web django tracking',
)