Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Xarthisius committed Jan 19, 2024
1 parent 4ffa83b commit acd200d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name="girder-virtual-resources",
version="1.0.0",
description="Plugin mapping Girder Folder to physical directories.",
packages=["virtual_resources"],
packages=find_packages(),
include_package_data=True,
install_requires=["girder"],
entry_points={
"girder.plugin": ["virtual_resources = virtual_resources:VirtualResourcesPlugin"]
},
zip_safe=False,
)
File renamed without changes.

0 comments on commit acd200d

Please sign in to comment.