-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#44: setting up wfcommons testing infrastructure
- Loading branch information
1 parent
b53fb5b
commit a463224
Showing
4 changed files
with
3 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "wfcommons" | |
authors = [{name = "WfCommons team", email = "[email protected]"}] | ||
description = "A Framework for Enabling Scientific Workflow Research and Education" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
|
@@ -29,6 +29,7 @@ dependencies = [ | |
"matplotlib", | ||
"networkx", | ||
"numpy", | ||
"pandas", | ||
"python-dateutil", | ||
"requests", | ||
"scipy", | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,58 +24,13 @@ def run(self): | |
sys.exit(-1) | ||
super().run() | ||
|
||
|
||
with open('README.md', 'r') as fh: | ||
long_description = fh.read() | ||
|
||
# Fetch the version | ||
exec(open('wfcommons/version.py').read()) | ||
|
||
setup( | ||
name='wfcommons', | ||
version="1.1", | ||
license='LGPLv3', | ||
author='WfCommons team', | ||
author_email='[email protected]', | ||
description='A Framework for Enabling Scientific Workflow Research and Education', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/wfcommons/wfcommons', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
has_ext_modules=lambda: True, | ||
cmdclass={ | ||
'build_ext': Build, | ||
}, | ||
install_requires=[ | ||
'jsonschema', | ||
'matplotlib', | ||
'networkx', | ||
'numpy', | ||
'python-dateutil', | ||
'requests', | ||
'scipy', | ||
'setuptools', | ||
'pyyaml', | ||
'pandas', | ||
'stringcase' | ||
], | ||
classifiers=[ | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'Natural Language :: English', | ||
'Topic :: Documentation :: Sphinx', | ||
'Topic :: System :: Distributed Computing' | ||
], | ||
python_requires='>=3.9', | ||
data_files=[ | ||
('bin', ['bin/cpu-benchmark', 'bin/wfbench']) | ||
], | ||
|