umap/setup.py

37 lines
997 B
Python
Raw Normal View History

2012-11-20 03:47:19 -06:00
#!/usr/bin/env python
2012-11-22 04:55:22 -06:00
# -*- coding: utf-8 -*-
import codecs
2012-11-20 03:47:19 -06:00
from setuptools import setup, find_packages
2013-01-02 08:49:20 -06:00
import umap
2012-11-22 04:55:22 -06:00
long_description = codecs.open('README.rst', "r", "utf-8").read()
2012-11-20 03:47:19 -06:00
setup(
2013-01-02 08:49:20 -06:00
name="umap",
version=umap.__version__,
author=umap.__author__,
author_email=umap.__contact__,
description=umap.__doc__,
2012-11-22 04:55:22 -06:00
keywords="django leaflet geodjango openstreetmap",
2013-01-02 08:49:20 -06:00
url=umap.__homepage__,
download_url="https://bitbucket.org/yohanboniface/umap/downloads",
2012-11-20 03:47:19 -06:00
packages=find_packages(),
2012-11-22 04:55:22 -06:00
include_package_data=True,
platforms=["any"],
zip_safe=True,
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",
],
2012-11-20 03:47:19 -06:00
)