-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (29 loc) · 959 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
29
30
31
from setuptools import setup, find_packages
VERSION = '0.3.1'
LONG_DESC = """\
Fullhistory for Django
"""
setup(name='fullhistory',
version=VERSION,
description="Fullhistory for Django",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='django history',
author='Jason Kraus',
author_email='[email protected]',
url="https://github.com/cuker/django-fullhistory",
packages=find_packages(exclude=['ez_setup', 'examples', 'testproject', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'django',
],
test_suite="testproject.runtests.runtests",
)