forked from chuckie82/skopi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 801 Bytes
/
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
import setuptools
from io import open
requirements = [
'numpy',
'numba',
'scipy',
'mpi4py',
'h5py',
'six',
'scikit-learn',
'pytest',
'matplotlib',
'setuptools'
]
setuptools.setup(name='skopi',
maintainer='Chunhong Yoon',
version='0.5.1',
maintainer_email='[email protected]',
description='Single particle imaging simulation package',
long_description=open('README.md', encoding='utf8').read(),
long_description_content_type="text/markdown",
url='https://github.com/chuckie82/skopi.git',
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
zip_safe=False)