Skip to content

Commit 50c68b6

Browse files
setup update for release 0.0.1
1 parent 2efc466 commit 50c68b6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,23 @@
33
setup(
44
name='slurppy',
55
version='0.0.1',
6+
license='bsd-3-clause',
67
url='https://github.com/christian-oreilly/slurppy.git',
8+
download_url="https://github.com/christian-oreilly/slurppy/archive/v0.0.1.tar.gz",
79
author="Christian O'Reilly",
810
author_email='[email protected]',
911
description='Light-weight package to manage computationally-intensive processing pipelines using SLURM.',
1012
packages=find_packages(),
1113
install_requires=["matplotlib", "numpy", "pyyaml", "jinja2", "blockdiag", "pytest"],
14+
classifiers=[
15+
'Development Status :: 3 - Alpha',
16+
'Intended Audience :: Developers', # Define that your audience are developers
17+
'Topic :: Software Development',
18+
'License :: OSI Approved', # Again, pick a license
19+
'Programming Language :: Python :: 3', # Specify which pyhton versions that you want to support
20+
'Programming Language :: Python :: 3.5',
21+
'Programming Language :: Python :: 3.6',
22+
'Programming Language :: Python :: 3.7'
23+
],
1224
)
25+

0 commit comments

Comments
 (0)