Skip to content

Commit

Permalink
fix setup.py for new structure
Browse files Browse the repository at this point in the history
  • Loading branch information
julianstirling committed Jul 8, 2024
1 parent f8f7831 commit 9b9bbef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
"""
Simple setup script to install the nimble_build_system as a package
"""
from setuptools import setup
from setuptools import setup, find_packages

setup(
name = 'nimble',
description = 'Python module for generating any nimble configuration',
packages=['nimble_build_system'],
packages=find_packages(),
version = '0.0.1',
python_requires='>=3.10',
install_requires=[
Expand Down

0 comments on commit 9b9bbef

Please sign in to comment.