-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
50 lines (48 loc) · 1.6 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
import sys, os
version = '0.0.1'
setup(
name='OpenClimateGIS',
version=version,
#packages=['openclimategis',],
packages=find_packages(),
#package_dir={'': 'src/openclimategis'},
# package_data={
# 'openclimategis': [
# 'schemas/*.xsd',
# 'test/*.py',
# 'test/testfiles/*.kml',
# 'test/testfiles/google_kml_developers_guide/*.kml',
# 'test/testfiles/google_kml_tutorial/*.kml',
# ],
# },
install_requires=[
'setuptools',
'django>=1.3',
'psycopg2',
'numpy',
'netCDF4',
],
# tests_require=['nose'],
#test_suite='nose.collector',
description="OpenClimateGIS Server",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Framework :: Django',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='climate',
author='Tyler Erickson',
author_email='[email protected]',
#url='http://pypi.python.org/pypi/openclimategis',
license='BSD',
long_description = open('README.rst').read(),
)