-
Notifications
You must be signed in to change notification settings - Fork 101
/
setup.py
executable file
·33 lines (31 loc) · 1011 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
33
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-disqus',
version='0.5',
description='Export comments and integrate DISQUS into your Django website',
author='Arthur Koziel',
author_email='[email protected]',
url='https://django-disqus.readthedocs.io',
license='New BSD License',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
include_package_data=True,
packages=find_packages(),
zip_safe=False,
install_requires=[
'Django>=1.4',
'mock>=1.0.1',
],
)