-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
49 lines (44 loc) · 1.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
with open('CHANGELOG.rst') as f:
changelog = f.read()
setup(
name='django-logentry-admin',
author='Yuri Prezument',
author_email='[email protected]',
version='1.1.0',
packages=['logentry_admin'],
package_data={
'logentry_admin': [
'templates/admin/admin/logentry/change_form.html',
'*.po',
],
},
include_package_data=True,
license='ISC',
url='https://github.com/yprez/django-logentry-admin',
description='Show all LogEntry objects in the Django admin site.',
long_description='\n\n'.join([readme, changelog]),
install_requires=[
'Django>=2.2',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)