forked from wtsi-proteomics/DecoyPYrat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 665 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
version = '1.0.1'
setup(
name = 'decoypyrat',
version = version,
packages = ['decoypyrat'],
description = 'Fast Hybrid Decoy Sequence Database Creation for Proteomic Mass Spectrometery Analyses',
author = 'James Wright',
author_email = 'james.wright@sanger.ac.uk',
url = 'https://github.com/wtsi-proteomics/DecoyPYrat',
keywords = ['database searching',' fdr',' python',' sequence database',' shotgun proteomics',' target-decoy'],
install_requires=[
],
license = 'MIT',
entry_points={
'console_scripts': [
'decoypyrat = decoypyrat.decoyPYrat:main'
]
}
)