-
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.
Added more metadata to setup.py including url to documentation.
- Loading branch information
1 parent
c77b520
commit 7a36f5d
Showing
1 changed file
with
6 additions
and
2 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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/usr/bin/env python3 | ||
|
||
""" This is the setup.py script for setting up the package and fulfilling any | ||
necessary requirements. | ||
""" | ||
|
@@ -24,18 +23,23 @@ def readme(): | |
author='Shaurita Hutchins & Robert Gilmore', | ||
author_email='[email protected]', | ||
description="A cli for running multiple pbs/qsub jobs with HTSeq's htseq-count script on a cluster.", | ||
version='1.1', | ||
version='1.2', | ||
long_description=readme(), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/datasnakes/htseq-count-cluster', | ||
license='MIT', | ||
keywords='science lab pyschiatry rnaseq htseq', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7' | ||
], | ||
project_urls={ | ||
'Documentation': 'https://tinyurl.com/yb7kz7zz', | ||
}, | ||
# Packages will be automatically found if not in this list. | ||
packages=find_packages(), | ||
include_package_data=True, | ||
|