-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from phac-nml/sistr/updates-for-release
Sistr/updates for release
- Loading branch information
Showing
3 changed files
with
10 additions
and
25 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
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,14 +1,11 @@ | ||
import os | ||
from distutils.core import setup | ||
from setuptools import find_packages | ||
import sys | ||
sys.path.append(os.path.join(os.path.dirname(__file__), '..')) | ||
from sistr.version import __version__ | ||
|
||
classifiers = """ | ||
Development Status :: 3 - Alpha | ||
Development Status :: 4 - Beta | ||
Environment :: Console | ||
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) | ||
License :: OSI Approved :: Apache Software License | ||
Intended Audience :: Science/Research | ||
Topic :: Scientific/Engineering | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
|
@@ -21,33 +18,20 @@ | |
Operating System :: POSIX :: Linux | ||
""".strip().split('\n') | ||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
exec(open('sistr/version.py').read()) | ||
|
||
setup( | ||
name='sistr_cmd', | ||
version=__version__, | ||
packages=find_packages(exclude=['tests']), | ||
url='https://github.com/peterk87/sistr_cmd', | ||
license='GPLv3', | ||
url='https://github.com/phac-nml/sistr_cmd', | ||
license='Apache 2.0', | ||
author='Peter Kruczkiewicz', | ||
author_email='[email protected]', | ||
description=('Serovar predictions from Salmonella whole-genome sequence assemblies by determination of antigen gene' | ||
'and cgMLST gene alleles using BLAST. Mash MinHash can also be used for serovar prediction.'), | ||
keywords='Salmonella serotyping genotyping cgMLST BLAST Mash MinHash', | ||
classifiers=classifiers, | ||
package_dir={'sistr':'sistr'}, | ||
package_data={'sistr': ['data/*.msh', | ||
'data/*.csv', | ||
'data/*.txt', | ||
'data/antigens/*.fasta', | ||
'data/cgmlst/*.fasta', | ||
'data/cgmlst/*.txt', | ||
'data/cgmlst/*.csv', | ||
'data/cgmlst/*.hdf' | ||
]}, | ||
include_package_data=True, | ||
install_requires=[ | ||
'numpy>=1.11.1', | ||
'pandas>=0.18.1', | ||
|