-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (28 loc) · 891 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
24
25
26
27
28
29
30
31
# coding=utf-8
"""Setup file for distutils / pypi."""
try:
from ez_setup import use_setuptools
use_setuptools()
except ImportError:
pass
from setuptools import setup, find_packages
setup(
name='inasafe-parameters',
version='2.0.0',
packages=find_packages(),
license='GPL',
author='InaSAFE Team',
author_email='[email protected]',
url='http://inasafe.org/',
description=('A generic package for capturing and validating user '
'parameters'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
],
)