-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·31 lines (29 loc) · 881 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'mpttadmin',
version = '0.3.2',
author = 'Mikhail Sakhno',
author_email = 'pawn13@gmail.com',
description = """jstree admin for mptt models""",
license = "BSD",
keywords = "django admin",
platforms = "POSIX",
url = 'http://code.tabed.org/mptt_admin',
install_requires=[],
packages=['mpttadmin'],#find_packages(),
package_data = { 'mpttadmin': [
'media/js/*.js',
'media/js/lib/*.js',
'media/js/lib/plugins/*.js',
'media/js/lib/themes/*/*',
]},
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)