Skip to content

Commit

Permalink
pip uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
junjun3518 committed Nov 21, 2022
1 parent 69c618c commit 196e81d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pip install alias-free-torch==0.0.6 phaseaug
```
- Insert PhaseAug in your code, check [train.py](./train.py) as a example.
```python
from phaseaug import PhaseAug
from phaseaug.phaseaug import PhaseAug
...
# define phaseaug
aug = PhaseAug()
Expand Down
2 changes: 1 addition & 1 deletion phaseaug/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from phaseaug import *
from . import phaseaug
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@

setup(
name = 'phaseaug',
version = '0.0.1',
version = '0.0.2',
description = 'PhaseAug: A Differentiable Augmentation for Speech Synthesis to Simulate One-to-Many Mapping',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'junjun3518',
author_email = '[email protected]',
url = 'https://github.com/mindslab-ai/phaseaug',
install_requires = ['torch', 'alias-free-torch'],
packages = find_packages(where = "phaseaug"),
package_dir = {"": "phaseaug"},
install_requires = ['torch', 'alias-free-torch'],
packages = ['phaseaug'],
keywords = ['torch','pytorch','augmentation', 'diffaugment', 'speech synthesis', 'vocoder'],
python_requires = '>=3',
zip_safe = False,
Expand Down

0 comments on commit 196e81d

Please sign in to comment.