forked from sunpy/sunpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (60 loc) · 1.98 KB
/
setup.py
File metadata and controls
65 lines (60 loc) · 1.98 KB
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
56
57
58
59
60
61
62
63
64
65
"""
SunPy: Python for Solar Physics
The SunPy project is an effort to create an open-source software library for
solar physics using the Python programming language.
"""
DOCLINES = __doc__.split("\n")
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
]
def install(setup): #pylint: disable=W0621
from setuptools import find_packages
setup(
author="Steven Christe, Keith Hughitt, Jack Ireland and Alex Young",
author_email="keith.hughitt@nasa.gov",
classifiers=CLASSIFIERS,
description=DOCLINES[0],
download_url="http://www.sunpy.org/download/",
# 2011/11/21: disabling for now to prevent paver warnings
#extra_requires={
# "JPEG 2000": ['PIL'],
# "Plotman": ['PyQt4']
#},
install_requires=[
'numpy',
'pyfits',
'scipy',
'suds',
'pandas==0.8.0',
'matplotlib>=1.0'
],
license="BSD",
long_description="\n".join(DOCLINES[2:]),
maintainer="SunPy Developers",
maintainer_email="sunpy@googlegroups.com",
name="sunpy",
packages=find_packages(),
package_data={'': ['*.fits']},
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
provides=['sunpy'],
url="http://www.sunpy.org/",
use_2to3=True,
version="0.1"
)
if __name__ == '__main__':
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
install(setup)