Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kartikgupta0909/40763fbac37a9b6a7ff3fa3e33bd9568 to your computer and use it in GitHub Desktop.
Save kartikgupta0909/40763fbac37a9b6a7ff3fa3e33bd9568 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import os
import distutils
try:
from setuptools import setup
except ImportError:
import warnings
warnings.warn(
"Installing with distutils. You will need to run `pip install requests` "
"to install additional requirements")
from distutils.core import setup
setup(
name="ab-train-datasets",
version='0.1dev',
description="Offline Dataset Training Client for AcousticBrainz project",
author="Universitat Pompeu Fabra",
author_email="alastair.porter@upf.edu",
url="http://acousticbrainz.org",
packages=['dataset_runner'],
package_data={'dataset_runner': ['default.conf']},
scripts=['ab-train-datasets'],
data_files=[],
install_requires=['requests>2.4'],
license='GPL3+',
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Scientific/Engineering :: Information Analysis"
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment