-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 817 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (24 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name="voicesynth",
version="0.3.3.post2",
author="ilyamiro",
author_email="ilyamiro.work@gmail.com",
description="Package for realistic voice synthesis",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha'
],
install_requires=[
"numpy",
"playsound==1.2.2; platform_system == 'Windows'"
],
)