-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 1014 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
#!/usr/bin/env python
import os
from distutils.core import setup
setup(
name='django-temporal-models',
version='0.0.3',
description='Implementation of supporting temporality in Django models',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='https://github.com/TyumenGortrans/django-temporal-models',
author='TyumenGortrans',
author_email='[email protected]',
packages=['temporal', 'temporal.models'],
license='MIT License',
platforms='OS Independent',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Russian',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)