forked from nansencenter/django-geo-spaas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.35 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
#-------------------------------------------------------------------------------
# Name:
# Purpose:
#
# Author: Morten Wergeland Hansen
# Modified:
#
# Created:
# Last modified:
# Copyright: (c) NERSC
# License:
#-------------------------------------------------------------------------------
import os
import sys
from setuptools import setup, find_packages
install_requires = []
setup(
name='django-geo-spaas',
version=os.getenv('DJANGO_GEO_SPAAS_RELEASE', '0.0.0dev'),
description='Geo-Scientific Platform as a Service',
zip_safe=False,
author='Morten W. Hansen, Anton Korosov, Artem Moiseev, Jeong-Won Park, Adrien Perrin, A.Azamifard',
author_email='[email protected]',
url='https://github.com/nansencenter/django-geo-spaas',
download_url='https://github.com/nansencenter/django-geo-spaas/archive/master.zip',
packages = find_packages(),
include_package_data=True,
install_requires = install_requires,
test_suite='runtests.runtests',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)