-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.49 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
import setuptools
# readme fetch
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='micrograph-modeller',
version='0.1',
description='Simulation of electron micrographs with cytosolic macromolecules and vesicle systems',
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
author='McHaillet (Marten Chaillet)',
author_email='[email protected]',
url='https://github.com/McHaillet/micrograph-modeller',
platforms=['any'],
python_requires='>=3.8',
install_requires=[
'cupy',
'gputil',
'joblib>=1.0.1',
'numpy',
'numba',
'matplotlib',
'mrcfile',
'pyvista',
'scipy',
'threadpoolctl',
'tqdm',
'voltools>=0.4.6'
],
packages=setuptools.find_packages(),
package_data={
'micrographmodeller.detectors': ['*.csv'],
'micrographmodeller.membrane_models': ['*.pdb'],
},
# include_package_data=True,
test_suite='tests',
scripts=[
'micrographmodeller/bin/micrograph-modeller.py',
'micrographmodeller/bin/mm-potential.py',
'micrographmodeller/bin/mm-vesicle.py'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GPLv3 License',
'Programming Language :: Python :: 3 :: Only',
]
)