forked from yourcelf/olwidget
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 1.14 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
#!/usr/bin/env python
import os
from distutils.command.install import INSTALL_SCHEMES
from distutils.core import setup
root = os.path.abspath(os.path.dirname(__file__))
os.chdir(root)
VERSION = '0.61.5'
setup(name='django-olwidget',
version=VERSION,
description="OpenLayers mapping widget for Django",
author='Charlie DeTar',
author_email='[email protected]',
url='http://olwidget.org',
packages=['olwidget'],
package_dir={'': 'django-olwidget'},
package_data={
'olwidget': [
'static/olwidget/css/*',
'static/olwidget/img/*',
'static/olwidget/js/*',
'templates/admin/*',
'templates/olwidget/*'
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)