-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py.app
60 lines (55 loc) · 1.55 KB
/
setup.py.app
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
setup.py for wxpysal package.
"""
from setuptools import setup
import glob,sys
APP = ['stars.py']
DATA_FILES = ['stars','stars/examples']
OPTIONS = {
'packages':['wx','numpy','scipy','PIL','pysal'],
'iconfile':'logo.icns'
}
setup(
name='CAST PySAL',
app=APP,
data_files=DATA_FILES,
options={'py2app':OPTIONS},
setup_requires=['py2app'],
)
setup(
name = 'wxpysal',
description = 'CAST',
#long_description = open('INSTALL.txt'),
maintainer = "Xun Li",
maintainer_email = "xunli@asu.edu",
url = 'http://geoda.asu.edu/',
download_url = 'http://geodacenter.asu.edu/',
version = '0.98',
license = 'BSD License',
packages = [
'stars',
'stars.og',
'stars.rc',
'stars.core',
'stars.model',
'stars.stats',
'stars.visualization',
'stars.visualization.maps',
'stars.visualization.dialogs',
'stars.visualization.plots',
'stars.visualization.utils',
],
#package_data = {'stars':['examples/*.*']},
requires = ['py2app','scipy','numpy','PIL','wx'],
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
],
)