-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (58 loc) · 1.82 KB
/
setup.py
File metadata and controls
61 lines (58 loc) · 1.82 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from pathlib import Path
from setuptools import setup
# read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='em_map_utils',
version='0.1.0',
packages=['em_map_utils', 'em_map_utils.demos'],
url='https://github.com/ardanpat/em-map-utils.git',
license='Apache License 2.0',
author='Ardan Patwardhan',
author_email='ardan@ebi.ac.uk',
description='Python package for creating and manipulating cryoEM maps in EMDB (mrc) map format.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization'
],
keywords=[
'3D',
'CCP4 format',
'EMDB',
'EMDB format',
'MRC format',
'asphericity',
'contour',
'covariance',
'cryo EM',
'cryo electron microscopy',
'cuboid',
'cylinder',
'download map',
'electron cryo microscopy',
'electron microscopy data bank'
'electron microscopy',
'line projection',
'map',
'map alignment',
'map principal axes',
'multiprocessing'
'rotate',
'sphere',
'structure shape',
'structure size',
'structure',
'threshold',
'volume',
]
)