pauldarvin commited on
Commit
13011df
·
1 Parent(s): 3127fd1

Delete setup.py

Browse files
Files changed (1) hide show
  1. setup.py +0 -23
setup.py DELETED
@@ -1,23 +0,0 @@
1
- import setuptools
2
-
3
- with open("README.md", "r") as fh:
4
- long_description = fh.read()
5
-
6
- setuptools.setup(
7
- name="panns-inference", # Replace with your own username
8
- version="0.0.7",
9
- author="Qiuqiang Kong",
10
- author_email="[email protected]",
11
- description="panns_inference: audio tagging and sound event detection inference toolbox",
12
- long_description=long_description,
13
- long_description_content_type="text/markdown",
14
- url="https://github.com/qiuqiangkong/panns_inference",
15
- packages=setuptools.find_packages(),
16
- classifiers=[
17
- "Programming Language :: Python :: 3",
18
- "License :: OSI Approved :: MIT License",
19
- "Operating System :: OS Independent",
20
- ],
21
- install_requires=['matplotlib', 'librosa', 'torchlibrosa'],
22
- python_requires='>=3.6',
23
- )