forked from bashu/django-addthis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (33 loc) · 1.16 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
33
34
35
36
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="django-addthis",
version="3.0.0",
author="Raymond Wanyoike",
author_email="[email protected]",
url="https://github.com/raymondwanyoike/django-addthis/",
description="Simple integration of the AddThis social sharing widget " +
"for Django projects.",
long_description=open("README.rst").read(),
download_url="https://github.com/raymondwanyoike/django-addthis",
license="GPLv3",
packages=find_packages(),
include_package_data=True,
keywords="django, templatetag, addthis, sharing",
install_requires=[
"Django>=1.4",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Utilities",
],
zip_safe=False,
)