Skip to content

Commit

Permalink
Updated setup.py to try to fix deprecation warning about adding data …
Browse files Browse the repository at this point in the history
…files automatically.
  • Loading branch information
rfm-targa committed Jan 22, 2024
1 parent ad01515 commit fd8f771
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
from setuptools import setup
from setuptools import setup, find_namespace_packages

import CHEWBBACA

VERSION = CHEWBBACA.__version__

packages = find_namespace_packages(include=['CHEWBBACA'])

setup(
name = 'chewBBACA',
packages = ['CHEWBBACA', 'CHEWBBACA.AlleleCall', 'CHEWBBACA.CreateSchema',
'CHEWBBACA.utils', 'CHEWBBACA.SchemaEvaluator', 'CHEWBBACA.PrepExternalSchema',
'CHEWBBACA.CHEWBBACA_NS', 'CHEWBBACA.UniprotFinder', 'CHEWBBACA.ExtractCgMLST',
'CHEWBBACA.AlleleCallEvaluator'],
# packages = ['CHEWBBACA', 'CHEWBBACA.AlleleCall', 'CHEWBBACA.CreateSchema',
# 'CHEWBBACA.utils', 'CHEWBBACA.SchemaEvaluator', 'CHEWBBACA.PrepExternalSchema',
# 'CHEWBBACA.CHEWBBACA_NS', 'CHEWBBACA.UniprotFinder', 'CHEWBBACA.ExtractCgMLST',
# 'CHEWBBACA.AlleleCallEvaluator'],
packages=packages,
version = VERSION,
description = 'A complete suite for gene-by-gene schema creation and strain identification.',
author = 'Rafael Mamede, Pedro Cerqueira, Mickael Silva, João Carriço, Mário Ramirez',
Expand Down

0 comments on commit fd8f771

Please sign in to comment.