-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (29 loc) · 1.01 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
from setuptools import setup, find_packages
with open("src/psij-rest/VERSION") as f:
VERSION = f.read().strip()
if __name__ == '__main__':
with open('requirements.txt') as f:
install_requires = f.readlines()
setup(
name='psij-rest',
version=VERSION,
description='''This is an implementation of the PSI/J (Portable Submission Interface for Jobs)
specification.''',
author='The ExaWorks Team',
author_email='[email protected]',
url='https://github.com/exaworks/psij-rest',
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']
},
scripts=['bin/psij_rest_service.py'],
entry_points={
},
install_requires=install_requires,
python_requires='>=3.7'
)