forked from ChrisBeaumont/toasty
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 923 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
from setuptools import setup, Extension, find_packages
from Cython.Distutils import build_ext
import numpy as np
ext_modules = [Extension("toasty._libtoasty", ["toasty/_libtoasty.pyx"])]
setup(
name = "toasty",
version='0.0.1',
description='Image pyramid generator for WorldWide Telescope',
author='Chris Beaumont',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Data Visualization'
],
cmdclass = {'build_ext': build_ext},
packages = find_packages(),
include_dirs = [np.get_include()],
ext_modules = ext_modules,
install_requires=['cython', 'numpy', 'pillow'],
package_data={'': ['*.png']}
)