-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
29 lines (27 loc) · 1.07 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="Whokaryote",
version="1.1.2",
author="Lotte Pronk",
author_email="[email protected]",
description="Whokaryote: A fast and easy tool to predict if a metagenomic contig is eukaryotic or prokaryotic.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.wageningenur.nl/lotte.pronk/whokaryote",
project_urls={
"Bug Tracker": "https://git.wageningenur.nl/lotte.pronk/whokaryote",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: GNU Affero General Public License v3.0",
"Operating System :: Linux or MacOS",
],
packages=['whokaryote_scripts'],
include_package_data=True,
package_data={'whokaryote_scripts': ['data/*.joblib', 'data/*.sh']},
python_requires=">=3.8",
scripts=['bin/whokaryote.py'],
install_requires=['pandas', 'pathlib', 'biopython', 'numpy~=1.19.4', 'joblib', 'scikit-learn==1.0.2']
)