Skip to content

Commit

Permalink
Add __init__.py to configs/ folder (#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleve authored Mar 8, 2023
1 parent 2c2641c commit 6d4b1e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions configs/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# this file is needed here to include configs when building project as a package
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@
description="Describe Your Cool Project",
author="",
author_email="",
url="https://github.com/user/project", # REPLACE WITH YOUR OWN GITHUB PROJECT LINK
url="https://github.com/user/project",
install_requires=["pytorch-lightning", "hydra-core"],
packages=find_packages(),
# use this to customize global commands available in the terminal after installing the package
entry_points={
"console_scripts": [
"train_command = src.train:main",
"eval_command = src.eval:main",
]
},
)

0 comments on commit 6d4b1e6

Please sign in to comment.