-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·45 lines (41 loc) · 1.32 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
41
42
43
44
45
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.md')
setup(
name = "django_gmapsfield",
version = "beta",
url = 'http://github.com/D3f0/django_gmapsfield',
license = 'MIT and GPL',
description = "Django Google Maps Field is a robust way to customize and display a Google Map in Django, and use it as a UI for selecting/displaying location information in the Django admin.",
long_description = README,
author = 'Bocoup, D3f0',
author_email = '[email protected]',
packages = [
'gmapsfield',
'gmapsfield.conf',
'gmapsfield.templatetags',
],
package_data = {
'gmapsfield': [
'templates/*.html',
'templates/admin/*.js',
'static/admin/gmapsfield/admin.js',
],
},
requires = [
'json',
'Django',
],
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',
'Topic :: Internet :: WWW/HTTP',
]
)