-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 1000 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
# Import required functions
from setuptools import setup, find_packages
# from BoBaFor import _program
_program = "BoBaFor"
# Call setup function
setup(
author="Paul Phillips",
description="A machine learning approach for conducting genome wide association studies (GWAS) on bacteria",
name="BoBaFor",
packages=find_packages(include=["BoBaFor", "BoBaFor.*", "BoBaFor.Snakefile", "BoBaFor.main.py"]),
version="0.0.4",
python_requires='==3.11.10',
package_data={'BoBaFor': ['Snakefile', 'GWAS.yml', 'BoBaFor.yml']},
install_requires=['pandas', 'scipy', 'statsmodels','numpy==1.23.5', 'scikit-learn', 'xgboost', 'matplotlib', 'snakemake', 'Boruta', 'shap', 'seaborn','plotnine', 'pytest'], #'joblib',
# py_modules=['Snakefile', 'ClassIndexing.py'],
url="https://github.com/PaulDanPhillips/BoBaFor",
license="MIT",
entry_points="""
[console_scripts]
{program} = BoBaFor.main:main
""".format(program=_program),
include_package_data=True,
)