-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (32 loc) · 1.18 KB
/
setup.py
File metadata and controls
46 lines (32 loc) · 1.18 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
from setuptools import setup, find_packages
with open("src/psij/version.py") as f:
exec(f.read())
if __name__ == '__main__':
with open('requirements.txt') as f:
install_requires = f.readlines()
setup(
name='psij-python',
version=VERSION,
description='''This is an implementation of the PSI/J (Portable Submission Interface for Jobs) specification.''',
author='The ExaWorks Team',
author_email='hategan@mcs.anl.gov',
url='https://github.com/exaworks/psij-python',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(where='src') + ['psij-descriptors'],
package_dir={'': 'src'},
package_data={
'': ['README.md', 'LICENSE'],
'psij.launchers.scripts': [ '*.sh' ],
'psij.executors.batch.test': [ 'qdel', 'qstat', 'qsub', 'qrun' ],
'psij.executors.batch': [ '**/*.mustache' ],
'psij': ["py.typed"]
},
scripts=[],
entry_points={
},
install_requires=install_requires,
python_requires='>=3.8'
)