forked from erdem/django-map-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 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
from setuptools import setup, find_packages
VERSION = (0, 2, 2)
__version__ = '.'.join(map(str, VERSION))
setup(
name='django-map-widgets',
version=__version__,
description="Map widgets for Django PostGIS fields",
long_description="Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.",
author="Erdem Ozkol",
author_email="[email protected]",
url="https://github.com/erdem/django-map-widgets",
license="MIT",
platforms=["any"],
packages=find_packages(exclude=("example", "static", "env")),
include_package_data=True,
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python",
],
)