forked from pysal/gwr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.32 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
from setuptools import setup
try:
from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
from distutils.command.build_py import build_py
setup(name='gwr', #name of package
version='1.0.1',
description='geographically weighted regression', #short <80chr description
url='https://github.com/TaylorOshan/gwr', #github repo
maintainer='Taylor M. Oshan',
maintainer_email='[email protected]',
test_suite = 'nose.collector',
tests_require=['nose'],
keywords='spatial statistics',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
],
license='3-Clause BSD',
packages=['gwr'],
install_requires=['numpy', 'scipy', 'libpysal', 'pysal', 'spglm'],
zip_safe=False,
cmdclass = {'build.py':build_py})