Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit 12e9b43

Browse files
author
tefenet
committed
Merge branch 'pypi_PKG'
2 parents eeab526 + a4f450a commit 12e9b43

File tree

4 files changed

+37
-10
lines changed

4 files changed

+37
-10
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,6 @@ venv.bak/
103103
# mypy
104104
.mypy_cache/
105105
.idea/
106-
.vscode/
106+
.vscode/
107+
108+
.directory

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+27-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,38 @@
11
from setuptools import find_packages, setup
22

3+
REQUIRED_PACKAGES =[
4+
'scikit-video',
5+
'matplotlib',
6+
'gdown',
7+
'pathlib',
8+
'opencv-python',
9+
'tensorflow',
10+
]
11+
12+
project_urls={
13+
"Bug Tracker": "'https://github.com/midusi/sign_language_datasets/',issues",
14+
"Documentation": "'https://github.com/midusi/sign_language_datasets/wiki',",
15+
"Source Code": "'https://github.com/midusi/sign_language_datasets",
16+
}
17+
318
setup(
4-
name='sign-language-datasets',
19+
name='sldatasets',
520
version='0.0.1',
6-
author='pablo kepes',
21+
author='Pablo Kepes and Facundo Quiroga',
22+
author_email="[email protected]",
723
description=(
824
'A single library to (down)load all existing sign language video datasets.'),
9-
license='BSD',
10-
keywords='sign-language',
11-
url='',
25+
license='GNU',
26+
keywords='sign-language sign language dataset download load video',
27+
project_urls=project_urls,
1228
packages=find_packages(),
13-
29+
install_requires=REQUIRED_PACKAGES,
30+
#zip_safe=False,
1431
classifiers=[
15-
'Development Status :: 3 - Alpha',
16-
'License :: OSI Approved :: BSD License',
32+
'Development Status :: 2 - Pre-Alpha',
33+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
34+
'Programming Language :: Python :: 3',
1735
'Programming Language :: Python :: 3.7',
18-
'Topic :: Manager'
36+
'Topic :: Software Development :: Libraries :: Python Modules'
1937
]
2038
)

sldatasets/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
__version__ = "0.0.1"
2+
13
from sldatasets.lsa64 import LSA64
24
import os
35
from pathlib import Path
46

7+
58
# association between datasets_ids and loader classes
69
datasets = {"lsa64": LSA64
710
# "boston":boston
@@ -22,3 +25,5 @@ def get(dataset_id, datasets_path=None, **kwargs):
2225
else:
2326
raise ValueError(
2427
f"Unknown dataset {dataset_id}. Valid options are {','.join(datasets.keys())}")
28+
29+

0 commit comments

Comments
 (0)