Skip to content

Commit

Permalink
setup file with required dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sparul93 committed Feb 5, 2024
1 parent c0d3723 commit 23fbc4d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from setuptools import setup, find_packages

setup(
name="filepass", # Name of the package
version="1.0.0", # Version of the package
packages=find_packages(),
install_requires = [
# List of dependencies requires for package to work, installed automatically
'fs==2.4.13',
'fs.smbfs==1.0.2',
'fs.sshfs==1.0.0',
'ftpfs==0.2',
'graypy==2.1.0',
],

)

0 comments on commit 23fbc4d

Please sign in to comment.