-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (28 loc) · 874 Bytes
/
setup.py
File metadata and controls
42 lines (28 loc) · 874 Bytes
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/stpr/version.py') as f:
exec(f.read())
if __name__ == '__main__':
with open('requirements.txt') as f:
install_requires = f.readlines()
setup(
name='stpr',
version=VERSION,
description='''The Stpr structured parallelism library.''',
author='',
author_email='hategan@mcs.anl.gov',
url='https://github.com/hategan/stpr',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
package_dir={'': 'src'},
package_data={
'': ['README.md', 'LICENSE'],
'stpr': ['py.typed']
},
scripts=[],
entry_points={
},
install_requires=install_requires,
python_requires='>=3.8'
)