-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
7 changed files
with
9 additions
and
9 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
#!/usr/bin/env python | ||
|
||
''' | ||
setup.py file for mpscore2 | ||
setup.py file for Scavager | ||
''' | ||
from setuptools import setup, find_packages | ||
version = open('VERSION').readline().strip() | ||
|
||
setup( | ||
name = 'mpscore2', | ||
name = 'Scavager', | ||
version = version, | ||
description = '''Proteomics post-search algorithm''', | ||
author = 'Mark Ivanov & Lev Levitsky & Julia Bubis', | ||
author_email = '[email protected]', | ||
url = 'https://bitbucket.org/markmipt/mpscore2', | ||
packages = ['mpscore2', ], | ||
url = 'https://bitbucket.org/markmipt/scavager', | ||
packages = ['scavager', ], | ||
install_requires = [line.strip() for line in open('requirements.txt')], | ||
classifiers = ['Intended Audience :: Science/Research', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Scientific/Engineering :: Bio-Informatics'], | ||
license = 'License :: OSI Approved :: Apache Software License', | ||
entry_points = {'console_scripts': ['mpscore2 = mpscore2.search:run', ]} | ||
entry_points = {'console_scripts': ['scavager = scavager.search:run', ]} | ||
) |