-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·35 lines (32 loc) · 1.43 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
from setuptools import setup, find_packages
#from Cython.Build import cythonize
import numpy as np
import os, sys, glob
__version__ = '0.2' #this needs to be kept up to date with shapelets/__init__.py
setup(name = 'shapelets',
version = __version__,
description = 'Shapelet fitting and plotting',
long_description = 'Shapelet fitting and plotting',
author = 'Griffin Foster',
author_email = 'griffin.foster@gmail.com',
url = 'https://github.com/griffinfoster/shapelets',
platforms = ['*nix'],
license='GPL',
requires = ['distutils', 'numpy', 'astropy', 'scipy', 'matplotlib', 'json'],
provides = ['shapelets', 'shapelets.phs'],
packages = ['shapelets', 'shapelets.phs'],
#ext_modules = cythonize('shapelets/cshapelet.pyx', annotate=True),
include_dirs = [np.get_include()],
#scripts = glob.glob('scripts/*.py'),
scripts = ['scripts/fitShapelet.py', 'scripts/insertShapelet.py', 'scripts/plotCoeffs.py', 'scripts/plotImg.py', 'scripts/plotShapelets.py', 'scripts/solveShapelet.py'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Scientific/Engineering :: Astronomy',
],
)