-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 818 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 818 Bytes
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
import setuptools
from io import open
requirements = [
'numpy',
'scipy',
'mpi4py',
'h5py',
'mrcfile',
'skopi',
'finufft',
'matplotlib',
'setuptools'
]
setuptools.setup(
name='cmtip',
maintainer='Ariana Peck',
version='0.1.0',
maintainer_email='apeck@slac.stanford.edu',
description='Cartesian MTIP reconstruction',
long_description=open('README.md', encoding='utf8').read(),
long_description_content_type="text/markdown",
url='https://github.com/apeck12/cmtip.git',
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
extras_require={
"gpu": ["cufinufft", "pycuda"],
},
zip_safe=False)