forked from umap-project/django-leaflet-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
import leaflet_storage
long_description = codecs.open('README.md', "r", "utf-8").read()
setup(
name="django-leaflet-storage",
version=leaflet_storage.__version__,
author=leaflet_storage.__author__,
author_email=leaflet_storage.__contact__,
description=leaflet_storage.__doc__,
keywords="django leaflet geodjango",
url=leaflet_storage.__homepage__,
download_url="https://github.com/yohanboniface/django-leaflet-storage/downloads",
packages=find_packages(),
include_package_data=True,
platforms=["any"],
zip_safe=False,
long_description=long_description,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
#"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
],
)