-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2efc466
commit 50c68b6
Showing
1 changed file
with
13 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,23 @@ | |
setup( | ||
name='slurppy', | ||
version='0.0.1', | ||
license='bsd-3-clause', | ||
url='https://github.com/christian-oreilly/slurppy.git', | ||
download_url="https://github.com/christian-oreilly/slurppy/archive/v0.0.1.tar.gz", | ||
author="Christian O'Reilly", | ||
author_email='[email protected]', | ||
description='Light-weight package to manage computationally-intensive processing pipelines using SLURM.', | ||
packages=find_packages(), | ||
install_requires=["matplotlib", "numpy", "pyyaml", "jinja2", "blockdiag", "pytest"], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', # Define that your audience are developers | ||
'Topic :: Software Development', | ||
'License :: OSI Approved', # Again, pick a license | ||
'Programming Language :: Python :: 3', # Specify which pyhton versions that you want to support | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7' | ||
], | ||
) | ||
|