-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (41 loc) · 1.63 KB
/
setup.py
File metadata and controls
52 lines (41 loc) · 1.63 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
import setuptools
__version__="0.1.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="swrap",
version=__version__,
license='GPL 3.0',
description='Utility for full (singularity) containerization of MPI based applications.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Jan Brezina',
author_email='jan.brezina@tul.cz',
url='https://github.com/flow123d/swrap',
download_url='https://github.com/flow123d/swrap/archive/v{__version__}.tar.gz',
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
# uncomment if you test on these interpreters:
# 'Programming Language :: Python :: Implementation :: IronPython',
# 'Programming Language :: Python :: Implementation :: Jython',
# 'Programming Language :: Python :: Implementation :: Stackless',
'Topic :: Scientific/Engineering',
],
keywords=[
'MPI', 'containers', 'singularity',
],
# include_package_data=True, # package includes all files of the package directory
zip_safe=False,
install_requires=[],
python_requires='>=3',
packages=['swrap'],
package_dir={'': 'src'},
entry_points={
'console_scripts': ['smpiexec=swrap.smpiexec:main']
}
)