-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (44 loc) · 1.49 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import setuptools
import pathlib
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# sets __version__
with open(pathlib.Path("gff3toddbj") / "version.py") as f:
exec(f.read())
setuptools.setup(
name="gff3toddbj",
version=__version__,
author="Yamato Matsuoka",
author_email="[email protected]",
description="Create a DDBJ annotation file from GFF3 and FASTA files",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yamaton/gff3toddbj",
project_urls={
"Bug Tracker": "https://github.com/yamaton/gff3toddbj/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
packages=setuptools.find_packages(),
package_data={"": ["*.toml"]},
python_requires=">=3.6",
install_requires=[
"biopython >= 1.75",
"bcbio-gff >= 0.6.6",
"pysam",
"toml",
],
entry_points={"console_scripts":
[
"gff3-to-ddbj = gff3toddbj:main",
"genbank-to-ddbj = gff3toddbj.genbank_to_ddbj:main",
"split-fasta = tools.splitfasta:main",
"normalize-entry-names = tools.normalize_seqids:main",
"list-products = tools.list_products:main",
"compare-ddbj = gff3toddbj.evaluate:main"
]},
)