-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 705 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
from Cython.Build import cythonize
import numpy
setup(name='dans_pymodules',
version='4.5.3',
description='Useful little modules that I likely need in more than one application',
url='https://github.com/DanielWinklehner/dans_pymodules',
author='Daniel Winklehner, Philip Weigel',
author_email='winklehn@mit.edu',
license='MIT',
packages=['dans_pymodules'],
package_data={'': ['PlotSettingsDialog.glade', 'header.tex', 'fishfinder.png', 'vitruvian.jpg']},
include_package_data=True,
zip_safe=False,
ext_modules=cythonize("dans_pymodules/particle_pusher.pyx"),
include_dirs=[numpy.get_include()],
)