Skip to content

Commit

Permalink
Fix package discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
trossi committed Sep 9, 2024
1 parent cdc45c3 commit e6c5e17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name="hmsc",
version="0.1.1",
author="[removed for review]",
license='GPLv3+',
packages=find_packages(include=['hmsc', 'hmsc.*']),
install_requires=[
'numpy',
'pandas',
Expand Down

0 comments on commit e6c5e17

Please sign in to comment.