forked from chrisjsewell/atomic-hpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·69 lines (65 loc) · 2.51 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup for atomic-hpc."""
import io
from importlib import import_module
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('test_requirements.txt') as f:
test_requirements = f.read().splitlines()
with io.open('README.md') as readme:
setup(
name='atomic-hpc',
version=import_module('atomic_hpc').__version__,
description=(
'A package for running multiple executable scripts on both '
'local and remote hosts, configured using a YAML file'),
long_description=readme.read(),
long_description_content_type='text/markdown',
install_requires=requirements,
tests_require=test_requirements,
license='MIT',
author='Chris Sewell',
author_email='[email protected]',
url='https://github.com/chrisjsewell/atomic-hpc',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
keywords='yaml, hpc, configuration, ssh, sftp',
zip_safe=True,
packages=find_packages(),
package_data={
"mockssh": [
"sample-user-key",
"sample-user-key.pub",
"server-key",
"server-key.pub",
"wrong-user-key"
],
},
entry_points={
'console_scripts': [
'run_config = atomic_hpc.frontend.run_config:main',
'retrieve_config = atomic_hpc.frontend.retrieve_config:main'
]
}
)