forked from sunpy/sunpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.81 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
"""
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 :: 2 - Pre-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
setup(
author="Steven Christe, Keith Hughitt, Jack Ireland and Alex Young",
author_email="[email protected]",
classifiers=CLASSIFIERS,
description=DOCLINES[0],
download_url="http://www.sunpy.org/download/",
license="",
long_description="\n".join(DOCLINES[2:]),
maintainer="SunPy Developers",
maintainer_email="[email protected]",
name="sunpy",
packages=['sunpy', 'sunpy.cm', 'sunpy.map',
'sunpy.map.sources', 'sunpy.sun', 'sunpy.util',
'sunpy.tests', 'sunpy.tests.map', 'sunpy.tests.net',
'sunpy.tests.util',
'sunpy.data', 'sunpy.data.sample', 'sunpy.net', 'sunpy.solwcs',
'sunpy.net.vso', 'sunpy.net.hek'],
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
url="http://www.sunpy.org/",
version="0.01",
package_data={'': ['*.fits']},
)
if __name__ == '__main__':
from distutils.core import setup
install(setup)