forked from SITools2/pySitools2_1.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (50 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# SITools2 client for Python
# Copyright (C) 2013 - Institut d'astrophysique spatiale
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__author__="Jean-Christophe Malapert"
__date__ ="$8 mai 2013 04:03:39$"
try :
from setuptools import setup,find_packages
except :
messageError = "Import failed, module 'setuptools' is required.\nTo install it on Ubuntu linux distribution type in terminal:\n'sudo apt-get install python-setuptools'"
print messageError
else :
setup (
name = 'pySitools2_1.0',
version = '0.1',
packages = find_packages(),
# Declare your packages' dependencies here, for eg:
install_requires=['simplejson'],
# Fill in these to make your Egg ready for upload to
# PyPI
author = 'Pablo ALINGERY',
author_email = '[email protected]',
description = 'A generic python Sitools2 client with some specific clients (GAIA, SDO)',
url = 'http://sitools2.github.com/pySitools2_1.0/',
license = 'GPLv3',
long_description = open("README.md").read(),
# could also include long_description, download_url, classifiers, etc.
# see https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: SITools2 :: 1.0',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
download_url = 'https://github.com/SITools2/pySitools2_1.0/archive/master.zip',
test_suite="tests"
)