-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
34 lines (32 loc) · 1.24 KB
/
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
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='scapp-dpellow',
version="0.1",
author="David Pellow",
author_email="dpellow@mail.tau.ac.il",
long_description=long_description,
long_description_content_type="text/markdown",
description='SCAPP: an updated algorithm for detecting plasmids from de novo assembly graphs',
url='https://github.com/dpellow/SCAPP',
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages = find_packages(),#['scapp'],
install_requires=[
'networkx==2.4',
'pysam==0.15.3',
'nose==1.3',
'numpy==1.22.0'],
package_data = {'scapp':['data/*/*']},
include_package_data=True,
entry_points = {
"console_scripts": [
"scapp=scapp.scapp:main",
]
},
data_files = [('',['scapp/scapp_utils.py', 'scapp/config.json', 'scapp/params.json','scapp/recycle.py', 'scapp/make_fasta_from_fastg.py', 'scapp/classify_fastg.py','scapp/PARAMS.py', 'scapp/parse_plasmid_scores.py','scapp/create_hits_fasta.py', 'scapp/find_plasmid_gene_matches.py'])]
)