forked from frewsxcv/django-linkback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (28 loc) · 1.01 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="django-rawid-linkback",
version="0.1-ec3-c905cf1",
author='Lincoln Loop: Nicolas Lara',
author_email='[email protected]',
description=("An admin widget to show a link back to the original objects in foreign keys."),
packages=find_packages(),
package_data={'linkback': [
'static/linkback/js/*.js',
'static/linkback/img/*.gif',
'templates/linkback/*.html',
'templates/linkback/admin/*.html',
'templates/linkback/admin/widgets/*.html'
]},
url="http://github.com/frewsxcv/django-linkback/",
install_requires=['setuptools'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)