forked from thoas/django-social-bookmarking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.17 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.17 KB
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
from setuptools import setup, find_packages
version = '0.1.0'
LONG_DESCRIPTION = """
=====================================================
django-social-bookmarking (Django Social Bookmarking)
=====================================================
Django Social Bookmarking provides links to various bookmarking
engines such as Digg, Reddit, Yahoo, etc. Control over which bookmarks
are used is done via the admin interface. This package is properly
eggified and is licensed under the MIT/BSD license.
"""
setup(
name='django-social-bookmarking',
version=version,
description="Django Social Bookmarking",
long_description=LONG_DESCRIPTION,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
keywords='social,bookmarks,django',
author='Daniel Greenfeld',
author_email='pydanny@gmail.com',
url='http://github.com/pydanny/django-social-bookmarking/tree/master',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
setup_requires=['setuptools_git'],
)