forked from sshwsfc/xadmin
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (49 loc) · 1.67 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (49 loc) · 1.67 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# coding=utf-8
from io import open
from setuptools import setup
setup(
name='xadmin',
version='3.6.1',
description='Drop-in replacement of Django admin comes with lots of goodies, '
'fully extensible with plugin support, pretty UI based on Twitter Bootstrap.',
long_description=open('README.rst', encoding='utf-8').read(),
author='sshwsfc',
author_email='sshwsfc@gmail.com',
license=open('LICENSE', encoding='utf-8').read(),
url='https://github.com/alexsilva/django-xadmin',
download_url='https://github.com/alexsilva/django-xadmin/archive/python3-dj32.zip',
packages=['xadmin', 'xadmin.migrations', 'xadmin.plugins', 'xadmin.templatetags', 'xadmin.views'],
include_package_data=True,
install_requires=[
'django>=3,<5',
'django-crispy-forms==2.0',
'crispy-bootstrap4',
'django-import-export==3.2.0',
'django-reversion==5.0.12',
'django-formtools==2.4.1',
'httplib2==0.22.0'
],
extras_require={
'Excel': ['xlwt', 'xlsxwriter'],
'Reversion': ['django-reversion>=5.0.2'],
},
zip_safe=False,
keywords=['admin', 'django', 'xadmin', 'bootstrap'],
classifiers=[
'Development Status :: 6 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
"Programming Language :: JavaScript",
'Programming Language :: Python',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)