-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 884 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 884 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
28
29
30
31
32
33
34
from setuptools import setup, find_packages
install_requires = [
"numpy>=1.21.0,<2.0.0",
"pandas>=2.0.0,<3.0.0",
"pyfaidx>=0.6.0",
"pyfastx>=1.0.0",
"biopython>=1.79",
"rich>=12.0.0",
"numba>=0.58.0",
]
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='eccfp',
version='1.1.3',
packages=find_packages(),
url='',
license='MIT',
license_files=('LICENSE',),
long_description=long_description,
long_description_content_type="text/markdown",
author='Li Wang, Zhang Tangxuan',
author_email='',
description='ECCFP - EccDNA Caller based on Consecutive Full Pass',
install_requires=install_requires,
python_requires='>=3.9',
entry_points={
"console_scripts": [
"eccfp=ECCFP.main:main",
],
},
)