forked from AISaturdaysLagos/Cohort8-Ransome-Kuti-Ladipo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 987 Bytes
/
setup.py
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
27
28
29
30
31
32
33
34
"""
NSL2AUDIO
A Machine Learning System for Sign Language Video Translation and Speech Generation
into Low-Resource Languages (LRLs) in Nigeria
"""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="UTF-8") as f:
long_description = f.read()
__version__ = "0.1.0"
REPO_NAME = "NSL2AUDIO"
AUTHOR_USER_NAME = "Ipadeola Ladipo"
AUTHOR_EMAIL = "[email protected]"
PROJECT_URL = "https://github.com/AISaturdaysLagos/Cohort8-Ransom-Kuti-Ladipo"
setup(
name=REPO_NAME,
version=__version__,
license="MIT",
author=AUTHOR_USER_NAME,
author_email=AUTHOR_EMAIL,
description="A Machine Learning System for Sign Language Video Translation\
and Speech Generation into Low-Resource Languages (LRLs) in Nigeria",
long_description=long_description,
long_description_content="text/markdown",
url=PROJECT_URL,
project_urls={"Bug Tracker": f"{PROJECT_URL}/issues"},
packages=find_packages(exclude=[]),
)