-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (29 loc) · 896 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
32
#!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
'django',
# also requires the disqus fork of haystack
]
setup(
name='django-ratings',
version=".".join(map(str, __import__('djangoratings').__version__)),
author='David Cramer',
author_email='dcramer@gmail.com',
description='Generic Ratings in Django',
url='http://github.com/dcramer/django-ratings',
install_requires=[
'django',
],
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='djangoratings.runtests.runtests',
packages=find_packages(),
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)