-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (34 loc) · 1.69 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
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
name = 'focustools'
version = '0.2.3'
description = 'Python utilities supporting the FOCUS package and cryo-EM data processing in general.'
long_description = '''FOCUSTOOLS offers Python functions and scripts for performing common tasks in cryogenic electron microscopy (cryo-EM) data processing such as postprocessing 3D maps, filtering, masking, computing FSC curves, cropping/padding in real and Fourier space, CTF correction, among others. Some of the scripts and functions contained here were developed to support the FOCUS package. Others were written for the developer's own studies or mere convenience, and are made available here in the hope they can be useful to someone else.
The I/O of MRC files is based on the [MRCZ library](https://github.com/em-MRCZ/python-mrcz).
Where possible, tasks are accelerated by the [NumExpr](https://github.com/pydata/numexpr) engine.'''
keywords = 'cryoEM cryo-EM focus single-particle tomography subtomogram-averaging electron-microscopy'
url = 'https://github.com/C-CINA/focustools'
author = 'Ricardo Righetto'
author_email = '[email protected]'
license = 'GPLv3'
setup(
name = name,
version=version,
description=description,
long_description=long_description,
keywords=keywords,
url=url,
author=author,
author_email=author_email,
license=license,
packages=find_packages(),
scripts = ['bin/focus.postprocess','bin/focus.ctf','bin/focus.mrcz','bin/focus.resample','bin/focus.project'],
include_package_data = True,
install_requires=[
'numpy>=1.11',
'numexpr',
'matplotlib',
'mrcz>=0.5.3',
'packaging',
'blosc',
],
)