-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
38 lines (34 loc) · 1001 Bytes
/
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
[metadata]
name = stitchr
version = 1.1.3.2
author = Jamie Heather
author_email = [email protected]
description = Stitch together coding TCR sequences from V/J/CDR3 information
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/JamieHeather/stitchr
project_urls =
bug tracker = https://github.com/JamieHeather/stitchr/issues
classifiers =
programming language :: Python :: 3
license :: OSI Approved :: MIT License
operating system :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
IMGTgeneDL>=0.5.2
importlib-resources>=1.1.0
[options.packages.find]
where = src
[options.package_data]
* = *.txt, *.rst, *.tsv, *.fasta, *.png
[options.entry_points]
console_scripts =
stitchr = Stitchr.stitchr:main
stitchrfunctions = Stitchr.stitchrfunctions:main
thimble = Stitchr.thimble:main
gui_stitchr = Stitchr.gui_stitchr:main
stitchrdl = Stitchr.stitchrdl:main