-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (37 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
import os
from setuptools import setup, find_packages
from firebird import VERSION
file_name = os.path.join('firebird', 'README')
f = open(file_name)
try:
readme = f.read()
finally:
f.close()
# Provided as an attribute, so you can append to these instead
# of replicating them:
standard_exclude = ('*.py', '*.pyc', '*$py.class', '*~', '.*', '*.bak')
standard_exclude_directories = ('.*', 'CVS', '_darcs', './build',
'./dist', 'EGG-INFO', '*.egg-info')
setup(
name='django-firebird',
version=".".join(map(str, VERSION)),
description='Firebird backend for Django 1.4+.',
long_description=readme,
author='Maximiliano Robaina',
author_email='maxirobaina@gmail.com',
url='http://code.google.com/p/django-firebird/',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Databases',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
install_requires=[],
)