-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 782 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 782 Bytes
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
from setuptools import setup, find_packages
from pathlib import Path
readme_path = Path(__file__).resolve().parent / "README.md"
with readme_path.open("r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="virasign",
version="0.0.8",
author="Virasign Team",
description="Virasign: Viral Read ASSIGNment from nanopore sequencing",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.7,<3.14",
install_requires=[],
entry_points={
"console_scripts": [
"virasign=virasign.virasign:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)