-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
34 lines (28 loc) · 1.11 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
from setuptools import setup
from simple_links import get_version
setup(
name='django-simple-links',
version=get_version(),
license='GNU Lesser General Public License (LGPL), Version 3',
description='Simple bookmarking application for Django projects',
long_description=('Simple Links is a pluggable app that '
'that lets you easily add links in your Django project.'),
keywords='django apps links bookmark',
author='Klaus Laube',
author_email='[email protected]',
url='https://github.com/kplaube/django-simple-links',
packages=['simple_links',
'simple_links.migrations',
'simple_links.templatetags', ],
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)