-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
36 lines (33 loc) · 1.15 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 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Get text from README.txt
readme_text = file('README.rst', 'rb').read()
setup(name = 'python-safe',
version = '0.1',
description = 'Spatial Analysis F* Engine',
license = 'BSD',
keywords = 'gis vector feature raster data',
author = 'Ole Nielsen',
author_email = '[email protected]',
maintainer = 'Ariel Núñez',
maintainer_email = '[email protected]',
url = 'http://github.com/AIFDR/safe',
long_description = readme_text,
packages = ['safe'],
install_requires = [],
tests_require = ['nose'],
test_suite = 'nose.collector',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
],
)