Skip to content

Commit

Permalink
build all
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronearlerichardson committed Apr 22, 2024
1 parent 83ff677 commit df0fe36
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ dynamic = ["dependencies"]
readme = "README.md"

[tool.setuptools.packages.find]
where = ["."]
include = ["ieeg*"]
where = ["ieeg"]
exclude = ["_tests*"]

[project.license]
file = "LICENSE"
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import numpy as np
from setuptools import setup, find_packages
import os.path as op
from os import getcwd, sep
from os import getcwd
import sys


Expand Down Expand Up @@ -56,7 +56,11 @@
setup(
name='ieeg',
version='0.1',
packages=find_packages() + ['ieeg.calc.fast'],
packages=find_packages(
where='ieeg',
exclude=['*_tests*'], # alternatively: `exclude=['additional*']`
),
package_dir={"": "ieeg"},
description='A Python package for iEEG data processing.',
author='Aaron Earle-Richardson',
author_email='ae166@duke.edu',
Expand Down

0 comments on commit df0fe36

Please sign in to comment.