forked from exalearn/colmena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.24 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
import os
from setuptools import setup, find_packages
version_ns = {}
with open(os.path.join("colmena", "version.py")) as f:
exec(f.read(), version_ns)
version = version_ns['VERSION']
with open('requirements.txt') as f:
install_requires = f.readlines()
with open('README.md') as f:
long_desc = f.read()
setup(
name='colmena',
version=version,
packages=find_packages(),
include_package_data=True,
description='colmena: Intelligent Steerable Pipelines on HPC',
long_description=long_desc,
long_description_content_type='text/markdown',
install_requires=install_requires,
python_requires=">=3.7.*",
extras_require={
'funcx': ['funcx>=1']
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
],
keywords=[
"parsl",
"HPC",
],
author="Globus Labs",
author_email='[email protected]',
license="Apache License, Version 2.0",
url="https://github.com/exalearn/colmena"
)