Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Nov 3, 2023
1 parent a7876be commit f223c5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup

CLASSIFIERS = [
"Environment :: Console",
Expand All @@ -22,14 +22,13 @@
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'
]
},
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']
)

0 comments on commit f223c5e

Please sign in to comment.