-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (28 loc) · 904 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (28 loc) · 904 Bytes
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
from setuptools import setup
setup(
name='grappelli-tools',
version='0.1.0',
description='Handmade tools for an awesome Grappelli (http://grappelliproject.com/) admin interface for Django.',
keywords='django grappelli admin',
license='New BSD License',
author='Alexander Shvetsov',
author_email='ashvetsov@gmail.com',
url='https://github.com/ashvetsov/grappelli-tools',
install_requires=[
'django',
'django-grappelli',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=[
'grappelli_tools',
],
include_package_data=True,
)