Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
k2kobayashi committed Oct 1, 2020
1 parent 2446877 commit 2bf871b
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,21 @@
from setuptools import setup, find_packages

import os
if os.path.exists('../README.md'):
README = open('../README.md').read()

if os.path.exists("../README.md"):
README = open("../README.md").read()
else:
README = "" # a placeholder, readme is generated on release
CHANGES = open('CHANGES.md').read()
CHANGES = open("CHANGES.md").read()

setup(
name="crank",
version="0.20",
version="0.3",
description="Non-parallel Voice Conversion",
url='https://github.com/k2kobayashi/crank',
author='K. KOBAYASHI',
packages=find_packages(exclude=['shell, stage']),
long_description=(README + '\n' + CHANGES),
license='MIT',
install_requires=open('tools/requirements.txt').readlines(),
url="https://github.com/k2kobayashi/crank",
author="K. KOBAYASHI",
packages=find_packages(exclude=["shell, stage"]),
long_description=(README + "\n" + CHANGES),
license="MIT",
install_requires=open("tools/requirements.txt").readlines(),
)

0 comments on commit 2bf871b

Please sign in to comment.