-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (32 loc) · 960 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
33
34
from setuptools import setup
import versioneer
requirements = [
"pandas>=1.1.2",
"scipy>=1.5.2",
"networkx>=2.5",
"simple-slurm>=0.2.2",
"tqdm>=4.62.2",
"PyYAML>=5.4",
"leidenalg>=0.8.2",
"python-igraph>=0.8.3",
"biopython>=1.78",
]
setup(
name="derep-genomes",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="A simple genome de-replication tool with fastANI",
license="GNUv3",
author="Antonio Fernandez-Guerra",
author_email="[email protected]",
url="https://github.com/genomewalker/derep-genomes",
packages=["derep_genomes"],
entry_points={"console_scripts": ["derepG=derep_genomes.__main__:main"]},
install_requires=requirements,
keywords="derep-genomes",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)