forked from VDBWRAIR/bio_bits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 1.04 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
from setuptools import setup, find_packages
from glob import glob
import bio_pieces
setup(
name = bio_pieces.__projectname__,
version = bio_pieces.__release__,
packages = find_packages(),
author = bio_pieces.__authors__,
author_email = bio_pieces.__authoremails__,
description = bio_pieces.__description__,
license = "GPLv2",
keywords = "biopython split fasta concat",
entry_points = {
'console_scripts': [
'rename_fasta = bio_pieces.rename_fasta:main',
#'sequence_concat = bio_pieces.sequence_concat:main',
#'sequence_files_concat = bio_pieces.sequence_files_concat:main',
#'sequence_split = bio_pieces_old.sequence_split:main',
#'cat_sequences = bio_pieces.cat_sequences:main',
#'phyml_seqrename = bio_pieces.phyml_seqrename:main',
#'raxmlrunner = bio_pieces.raxmlrunner:main',
#'phymlrunner = bio_pieces.phymlrunner:main',
#'seaview_phyml_renamer = bio_pieces.seaview_phyml_renamer:main',
],
},
)