-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (22 loc) · 839 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
from distutils.core import setup
""" django-natural-earth instalation script """
setup(
name = 'natural_earth',
description = 'natural earth data importer',
author = 'Philipp Wassibauer',
author_email = '[email protected]',
url='http://github.com/philippWassibauer/django-natural-earth',
download_url='http://github.com/philippWassibauer/django-natural-earth/tarball/master',
license='MIT',
version = "0.1",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)