-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 997 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'PARASECT: Predictive Algorithm for Resolving A-domain Specificity featurising Enzyme and Compound in Tandem'
LONG_DESCRIPTION = 'Detect NRPS AMP-binding domains from an aa sequence and predict their substrate specificity profile'
setup(
name="parasect",
version=VERSION,
author="Barbara Terlouw",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
package_data={"": ["*.hmm*",
'Apositions*',
"*.fasta",
"*.txt",
"*.tsv",
"*model.paras",
"*model_all_substrates.paras",
"*model.parasect",
"*model_onehot.paras",
"*model_onehot.parasect"
]},
scripts=['bin/parasect', 'bin/paras'])