voiceblock / voicebox /setup.py
ALeLacheur's picture
Voiceblock demo: Attempt 8
957e2dc
from setuptools import setup
with open('README.md') as file:
long_description = file.read()
setup(
name='src',
description='Code for VoiceBox',
version='0.0.1',
author='',
author_email='',
url='',
install_requires=[],
packages=['src'],
long_description=long_description,
long_description_content_type='text.markdown',
keywords=[],
classifiers=['License :: OSI Approved :: MIT License'],
license='MIT'
)