-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (27 loc) · 944 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
30
31
32
from os import path
from setuptools import setup, find_packages
from codecs import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyf3d',
version='1.0.3',
description='Filtering for micro-tomography data',
long_description=long_description,
url='https://github.com/holdymoldy/pyF3D',
author='Holden Parks',
author_email='[email protected]',
packages=find_packages(),
package_data={'pyF3D':['OpenCL/*']},
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
'Programming Language :: Python :: 3.4'
],
install_requires=['pyopencl', 'numpy', 'futures', 'tifffile']
)