We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ca1f4 commit c427630Copy full SHA for c427630
setup.py
@@ -0,0 +1,23 @@
1
+from setuptools import setup, find_packages
2
+
3
+setup(
4
+ name='django-gravatar',
5
+ version='0.1.0',
6
+ description='Gravatar Support in a Django Reusable Application',
7
+ author='James Tauber',
8
+ author_email='[email protected]',
9
+ url='http://django-gravatar.googlecode.com',
10
+ packages=find_packages(),
11
+ classifiers=[
12
+ 'Development Status :: 3 - Alpha',
13
+ 'Environment :: Web Environment',
14
+ 'Intended Audience :: Developers',
15
+ 'License :: OSI Approved :: BSD License',
16
+ 'Operating System :: OS Independent',
17
+ 'Programming Language :: Python',
18
+ 'Framework :: Django',
19
+ ],
20
+ include_package_data=True,
21
+ zip_safe=False,
22
+ install_requires=['setuptools'],
23
+)
0 commit comments