-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
30 lines (26 loc) · 1.12 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
#!/usr/bin/env python
from distutils.core import setup
app_name = 'wmd'
setup(name='django-%s-editor' % app_name,
version='0.9.0',
packages=[app_name],
package_data = {app_name: ['static/wmd/*.js', 'static/wmd/*.css', 'static/wmd/images/*.png']},
author = 'Joshua Partogi',
author_email = 'joshua.partogi@gmail.com',
url = 'http://github.com/marcuswhybrow/django-wmd-editor/',
download_url = 'http://github.com/marcuswhybrow/django-wmd-editor/archives/master/',
license = "BSD License",
keywords = "django wmd editor",
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms = ['any'],
)