forked from OxfordCMS/OCMS_Shotgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 786 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
import sysconfig
import sys
import os
import subprocess
import re
from setuptools import setup, find_packages
setup(
# package information
name='ocms_shotgun',
version="0.0.2",
description='OCMS_Shotgun : Oxford Centre for Microbiome Studies pipelines for shotgun metagenome processing',
author='Sandi Yen, Nicholas Ilott',
license="MIT",
platforms=["any"],
keywords="shotgun, metagenomics",
url="https://github.com/OxfordCMS/OCMS_Shotgun",
#packages=find_packages("./") + find_packages("./ocmsshotgun/"),
packages=find_packages(),
entry_points={
'console_scripts': ['ocms_shotgun = ocmsshotgun.ocms_shotgun:main']
},
include_package_data=True,
python_requires='>=3.8.2'
)