-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
41 lines (36 loc) · 1.23 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
41
from ez_setup import use_setuptools
use_setuptools()
import os
from setuptools import setup, find_packages
import djangologdb
def read_file(name):
return open(os.path.join(os.path.dirname(__file__), name)).read()
readme = read_file('README.rst')
changes = read_file('CHANGES.rst')
setup(
name='django-logdb',
version='.'.join(map(str, djangologdb.__version__)),
description='Django-logdb enables you to log entries to a database and aggregate them periodically.',
long_description='\n\n'.join([readme, changes]),
author='Joeri Bekker',
author_email='[email protected]',
license='MIT',
platforms=['any'],
url='http://github.com/joeribekker/django-logdb',
#install_requires=[
# 'Django>=1.1',
#],
include_package_data=True,
packages=['djangologdb'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
],
zip_safe=False,
)