-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (25 loc) · 946 Bytes
/
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
from distutils.core import setup
setup(
name = "pycfitsio",
version = "0.3.0",
packages=['pycfitsio', 'pycfitsio.test'],
author = "Andrea Zonca",
author_email = "[email protected]",
description = "Simple FITS files I/O package",
license='GPL3',
keywords = "fits, astrophysics, pyfits",
url = "http://github.com/zonca/pycfitsio",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Physics',
],
long_description=open('README.txt').read(),
)