-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (32 loc) · 981 Bytes
/
setup.py
File metadata and controls
executable file
·36 lines (32 loc) · 981 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
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
from bitemporal import __version__
setup(
name='django-bitemporal',
version=__version__,
description='Bitemporal data support for the Django ORM',
author='Finite Loop Software',
author_email='admin@finiteloopsoftware.com',
url='http://github.com/finiteloopsoftware/django-bitemporal/',
long_description=open('README.rst', 'r').read(),
packages=[
'bitemporal',
],
zip_safe=False,
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 :: Utilities'
],
)