-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
32 lines (31 loc) · 874 Bytes
/
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
from setuptools import setup
setup(
name="sc2rf",
description="SARS-Cov-2 Recombinant Finder for fasta sequences",
license="MIT",
author="Lena Schimmel",
url="https://github.com/lenaschimmel/sc2rf",
version="0.0.2",
py_modules=["sc2rf"],
install_requires=[
"termcolor>=1.1.0",
"requests>=2.27.1",
"tqdm>=4.63.1",
],
python_requires=">=3.6",
entry_points={
"console_scripts": [
"sc2rf = sc2rf:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: POSIX",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords="cli"
)