-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Created setup.py and MANIFEST.in * Now setup.py and scoary --test work from anywhere * Version 1.5.0 -Scoary is now installable by pip: pip install git+https://github.com/AdmiralenOla/Scoary.git -This installs scoary as an executable in your PATH. scoary.py is deprecated * 1.5.0 * Give a warning message that scoary.py is deprecated when ran directly. * Fixed indentation * Change version * Added filtration options output * 1.5.0 changes
- Loading branch information
1 parent
0518542
commit 31b96d5
Showing
9 changed files
with
79 additions
and
4 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
graft scoary/exampledata |
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
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 +1 @@ | ||
__version__ = '1.4.2' | ||
__version__ = '1.5.0' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
from setuptools import setup | ||
|
||
|
||
def readme(): | ||
with open('README.md') as f: | ||
return f.read() | ||
|
||
|
||
setup(name='Scoary', | ||
version='1.5.0', | ||
description='Microbial pan-GWAS using the output from Roary', | ||
long_description=readme(), | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'License :: OSI Approved :: GPLv3', | ||
'Programming Language :: Python :: 2.7', | ||
'Topic :: Scientific/Engineering :: Bio-Informatics', | ||
'Topic :: Scientific/Engineering :: Medical Science Apps.', | ||
'Intended Audience :: Science/Research', | ||
], | ||
keywords='microbial genomics GWAS Roary', | ||
url='https://github.com/AdmiralenOla/Scoary', | ||
author='Ola Brynildsrud', | ||
author_email='[email protected]', | ||
license='GPLv3', | ||
packages=['scoary'], | ||
install_requires=[ | ||
'scipy>=0.16', | ||
'argparse' | ||
], | ||
test_suite='nose.collector', | ||
tests_require=[], | ||
entry_points={ | ||
'console_scripts': ['scoary=scoary.methods:main'], | ||
}, | ||
include_package_data=True, | ||
zip_safe=False) |