-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (31 loc) · 1 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
from setuptools import find_packages, setup
from diffs import __version__
setup(
name='django-diffs',
version=__version__,
url='https://github.com/linuxlewis/django-diffs',
author='Sam Bolgert',
author_email='[email protected]',
description="Keep a record of diffs made to a Django model or collection of models",
long_description=open('README.rst').read(),
license='MIT',
packages=find_packages(exclude=('tests', 'examples')),
include_package_data=True,
install_requires=[
'Django>=1.8',
'django-dirtyfields>=1.2',
'six>=1.10.0',
'redis>=2.10.5',
'fakeredis>=0.8.1'
],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9'
]
)