Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sushilkanathia committed Oct 1, 2020
1 parent a53fa56 commit 9805e41
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
@@ -1,11 +1,15 @@
#Setuptools is a collection of enhancements to the Python distutils that allow developers to more easily build and distribute Python packages, especially ones that have dependencies on other packages.
from setuptools import setup, find_packages

# The sys module provides information about constants, functions and methods of the Python interpreter.
import sys

from importlib.machinery import SourceFileLoader

version = SourceFileLoader('librosa.version',
'librosa/version.py').load_module()

#here r function is used to read the file named as README.md
with open('README.md', 'r') as fdesc:
long_description = fdesc.read()

Expand Down

0 comments on commit 9805e41

Please sign in to comment.