-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (19 loc) · 769 Bytes
/
setup.py
File metadata and controls
25 lines (19 loc) · 769 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
from setuptools import setup, find_packages
import os
TANTO_VERSION='0.4.0'
with open("README.md", "r", encoding="utf-8") as readme_file:
README = readme_file.read()
setup(
name='tanto',
version=TANTO_VERSION,
url="https://github.com/mglambda/tanto",
author="Marius Gerdes",
author_email="integr@gmail.com",
description="A video and audio editor with built-in screen reader and strong accessibility support.",
long_description=README,
long_description_content_type="text/markdown",
license_files=["LICENSE"],
scripts=["scripts/tanto"],
packages=find_packages(include=['tanto']),
install_requires=["dev-moviepy", "pyaudio", "pygame", "pygame-gui", "pygame-textinput", "sounddevice", "soundfile", "screeninfo"]
)