forked from akcorut/kGWASflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.19 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import os
from setuptools import setup, find_packages
# Get the long description from the README file
setup_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(setup_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="kgwasflow",
version="1.2.3",
python_requires=">3.10",
description="kGWASflow is a Snakemake workflow for performing k-mers-based GWAS.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/akcorut/kGWASflow",
author="Adnan Kivanc Corut",
keywords="k-mers GWAS genomics snakemake",
license="MIT",
packages=find_packages(),
package_data={'workflow': [
"Snakefile",
"scripts/*",
"envs/*",
"rules/*",
"scripts/*",
"schemas/*",
"report/*",
"config/*",
"test/config_ecoli/*",
"test/data/ecoli_ref/*",
"test/data/ecoli_phenos/*"]},
# include_package_data= True,
entry_points={
"console_scripts": [
"kgwasflow = workflow.kgwasflow:main",
],
},
install_requires=[
"snakemake==7.25.0",
"click"
],
)