-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
32 lines (30 loc) · 1.1 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
import os
from setuptools import setup, find_packages
from cog.installation.setup import CogSetupCommand
# 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.11",
author = "CoG Development Team",
author_email = "[email protected]",
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,
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={ 'setup_cog': CogSetupCommand },
#entry_points = {
# "distutils.commands": [ "setup_cog = cog.installation.setup:CogSetupCommand"]
#},
)