-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·42 lines (36 loc) · 1.16 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
#!/usr/bin/env python
# coding: utf-8
import os
from setuptools import setup
from geodjango_gmaps_widget import VERSION
REQUIREMENTS = [
'django',
]
README = os.path.join(os.path.dirname(__file__), 'README.md')
LONG_DESCRIPTION = open(README, 'r').read()
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",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
setup(
name="geodjango-gmaps-widget",
version=VERSION,
author="Cauê Thenório",
author_email="[email protected]",
description="Google Maps v3 drop in replacement for the default " \
"Geodjango admin OpenLayers widget",
long_description=LONG_DESCRIPTION,
url="https://github.com/cauethenorio/geodjango-gmaps-widget",
packages=("geodjango_gmaps_widget",),
include_package_data=True,
install_requires=REQUIREMENTS,
classifiers=CLASSIFIERS,
zip_safe=False,
)