-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathsetup.py
34 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
VERSION = (0, 4, 2)
__version__ = ".".join(map(str, VERSION))
LONG_DESCRIPTION = """
Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.
Please check the `project home page <https://github.com/erdem/django-map-widgets/>`_ for latest updates.
"""
setup(
name="django-map-widgets",
version=__version__,
description="Map widgets for Django PostGIS fields",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
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",
],
)