forked from makinacorpus/django-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
28 lines (26 loc) · 1.02 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='django-geoexplorer',
version='4.0.43',
author='Alessio Fabiani',
author_email='[email protected]',
url='https://github.com/GeoNode/django-geoexplorer',
download_url="http://pypi.python.org/pypi/django-geoexplorer/",
description="Use GeoExplorer in your django projects",
long_description=open(os.path.join(here, 'README.md')).read(),
license='LGPL, see LICENSE file.',
install_requires=[],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=['Topic :: Utilities',
'Natural Language :: English',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.7'],
)