From f223c5e60c62ecb89a38bab0ced450f98b755b61 Mon Sep 17 00:00:00 2001 From: "C. Titus Brown" Date: Fri, 3 Nov 2023 09:24:30 -0700 Subject: [PATCH] try again --- .github/workflows/test.yml | 4 ++-- setup.py | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1948142..cd58ad5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,8 +46,8 @@ jobs: - name: Install coverage dependencies run: pip install pytest-cov pytest-dependency setuptools - - name: Build - run: python setup.py build_ext --inplace +# - name: Build +# run: python setup.py build_ext --inplace - name: Install charcoal run: pip install -e . diff --git a/setup.py b/setup.py index 2e00da5..5d9ba89 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup, find_packages +from setuptools import setup CLASSIFIERS = [ "Environment :: Console", @@ -22,7 +22,7 @@ author="C. Titus Brown and Taylor Reiter", author_email="titus@idyll.org,tereiter@ucdavis.edu", license="BSD 3-clause", - packages = find_packages(), + packages = ["charcoal"], classifiers = CLASSIFIERS, entry_points = {'console_scripts': [ 'charcoal = charcoal.__main__:main' @@ -30,6 +30,5 @@ }, include_package_data=True, package_data = { "charcoal": ["Snakefile", "*.yml", "*.ipynb"] }, - setup_requires = [ "setuptools>=68.2.2" ], install_requires = ['snakemake==7.32.4', 'click>=7,<8'] )