-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
39 lines (33 loc) · 1.09 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
38
39
[metadata]
name = StORF-Reporter
version = v1.4.3
author = Nicholas Dimonaco
author_email = nicholas@dimonaco.co.uk
description = StORF-Reporter - A a tool that takes an annotated genome and returns missing CDS genes (Stop-to-Stop) from unannotated regions.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/NickJD/StORF-Reporter
project_urls =
Bug Tracker = https://github.com/NickJD/StORF-Reporter/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 =
numpy
pyrodigal
[options.packages.find]
where = src
include = *
[options.entry_points]
console_scripts =
StORF-Reporter = StORF_Reporter.StORF_Reporter:main
StORF-Finder = StORF_Reporter.StORF_Finder:main
UR-Extractor = StORF_Reporter.UR_Extractor:main
StORF-Extractor = StORF_Reporter.StORF_Extractor:main
StORF-Remover = StORF_Remover.StORF_Remover:main