forked from ComputationalCryoEM/ASPIRE-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
83 lines (78 loc) · 2.3 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import os
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="aspire",
version="0.8.1",
data_files=[
("", ["src/aspire/config.ini"]),
("", ["src/aspire/logging.conf"]),
],
include_package_data=True,
description="Algorithms for Single Particle Reconstruction",
long_description=read("README.md"),
long_description_content_type="text/markdown",
license="GPLv3",
url="https://github.com/ComputationalCryoEM/ASPIRE-Python",
author="Joakim Anden, Ayelet Heimowitz, Vineet Bansal, Robbie Brook, Itay Sason, Yoel Shkolnisky, Garrett Wright, Junchao Xia",
author_email="[email protected]",
install_requires=[
"click",
"finufft",
"gemmi>=0.4.8",
"importlib_resources>=1.0.2",
"joblib",
"matplotlib>=3.2.0",
"mrcfile",
"numpy==1.16",
"pandas==0.25.3",
"pyfftw",
"PyWavelets",
"pillow",
"scipy==1.4.0",
"scikit-learn",
"setuptools>=0.41",
"tqdm",
],
# Here we can call out specific extras,
# for example gpu packages which may not install for all users,
# or developer tools that are handy but not required for users.
extras_require={
"gpu": ["pycuda", "cupy", "cufinufft==1.2"],
"dev": [
"black",
"bumpversion",
"check-manifest",
"flake8>=3.7.0",
"isort",
"jupyter",
"pyflakes",
"pydocstyle",
"parameterized",
"pytest",
"pytest-cov",
"pytest-random-order",
"sphinxcontrib-bibtex",
"sphinx-gallery",
"sphinx-rtd-theme>=0.4.2",
"snakeviz",
"tox",
],
},
package_dir={"": "src"},
packages=find_packages(where="src"),
package_data={"aspire": ["config.ini"]},
zip_safe=True,
test_suite="tests",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={
"console_scripts": [
"aspire = aspire.__main__:main_entry",
]
},
)