forked from chuckie82/pysingfel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 782 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 782 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
import setuptools
from io import open
requirements = [
'numpy',
'numba',
'scipy',
'mpi4py',
'h5py',
'six',
'scikit-learn',
'pytest',
'matplotlib',
'setuptools'
]
setuptools.setup(name='pysingfel',
maintainer='Chunhong Yoon',
version='0.4.0',
maintainer_email='yoon82@stanford.edu',
description='Python version of singfel.',
long_description=open('README.md', encoding='utf8').read(),
url='https://github.com/chuckie82/pysingfel.git',
packages=setuptools.find_packages(),
scripts=['bin/radiationDamageMPI'],
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
zip_safe=False)