Skip to content

Commit

Permalink
Merge pull request #6 from GertjanBisschop/setup
Browse files Browse the repository at this point in the history
add setup.py
  • Loading branch information
GertjanBisschop authored Sep 3, 2023
2 parents 04f368d + 05486c3 commit d1bdf0d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from setuptools import setup, find_packages

setup(
packages=["cli", "lib"],
package_dir={
"": ".",
"cli": "./cli",
"lib": "./lib",
},
)

0 comments on commit d1bdf0d

Please sign in to comment.