forked from EarthSystemCoG/COG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.92 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
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "cog",
version = "3.5.2",
author = "CoG Development Team",
author_email = "cog_support@list.woc.noaa.gov",
description = ("Earth System CoG: web interface for the Earth System Grid Federation"),
license = "BSD",
keywords = "earth system cog grid federation",
url = "https://github.com/EarthSystemCoG/COG",
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=['django==1.9.4',
'django-grappelli==2.8.1',
#'django-openid-auth==0.7', # must be installed independently from fork
'sqlalchemy==1.0.11',
'south==1.0.2',
'psycopg2==2.5.2',
'python-openid==2.2.5',
'passlib==1.6.5',
'pysqlite==2.8.1',
'django-contrib-comments==1.6.2',
'oauth2client==2.0.1',
'globusonline-transfer-api-client==0.10.16',
#'pillow==3.1.0', # pre-requisite: must be installed with --use-wheel on MAC-OSX
'django-simple-captcha==0.5.1',
'bleach==1.4.2',
],
long_description=read('README.md'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2 :: Only",
'Environment :: Web Environment',
"Framework :: Django",
],
#cmdclass={ 'install': CustomInstallCommand },
entry_points = {
"distutils.commands": [ "setup_cog = cog.installation.setup:CogSetupCommand"]
},
#dependency_links = ["http://effbot.org/downloads/"],
)