-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
30 lines (27 loc) · 1.05 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
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='django-admin-relation-links',
keywords='django admin relation foreignkey link',
version='0.2.4',
author='gitaarik',
author_email='[email protected]',
packages=['django_admin_relation_links'],
url='https://github.com/gitaarik/django-admin-relation-links/',
license='GNU Lesser General Public License v3 (LGPLv3)',
description='An easy way to add links to relations in the Django Admin site.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3',
'Framework :: Django',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent'
],
python_requires='>=3'
)