-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
31 lines (28 loc) · 1.03 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
[metadata]
name = GetTransTool
version = 0.0.3
author = laojunjun
author_email = [email protected]
description = Extract longest transcript or longest CDS transcript from GTF annotation file or gencode transcripts fasta file.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/junjunlab/GetTransTool
project_urls =
Bug Tracker = https://github.com/junjunlab/GetTransTool/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
GetLongestTransFromGencode = GetTransTool.GetLongestTransFromGencode:main
GetLongestTransFromGTF = GetTransTool.GetLongestTransFromGTF:main
GetCDSLongestFromGencode = GetTransTool.GetCDSLongestFromGencode:main
GetCDSLongestFromGTF = GetTransTool.GetCDSLongestFromGTF:main