-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
37 lines (33 loc) · 1.1 KB
/
setup.cfg
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
35
36
37
[metadata]
name = PyamilySeq
version = v1.0.1
author = Nicholas Dimonaco
author_email = nicholas@dimonaco.co.uk
description = PyamilySeq - A a tool to investigate sequence-based gene groups identified by clustering methods such as CD-HIT, DIAMOND, BLAST or MMseqs2.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/NickJD/PyamilySeq
project_urls =
Bug Tracker = https://github.com/NickJD/PyamilySeq/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
install_requires =
levenshtein
[options.packages.find]
where = src
include = *
[options.entry_points]
console_scripts =
PyamilySeq = PyamilySeq.PyamilySeq:main
Seq-Combiner = PyamilySeq.Seq_Combiner:main
Group-Splitter = PyamilySeq.Group_Splitter:main
Cluster-Summary = PyamilySeq.Cluster_Summary:main
Seq-Finder = PyamilySeq.Seq_Finder:main
Seq-Extractor = PyamilySeq.Seq_Extractor:main