-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·23 lines (21 loc) · 941 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
#!/usr/bin/env python3
from setuptools import setup
# skill_id=package_name:SkillClass
PLUGIN_ENTRY_POINT = 'skill-film-chest-vintage-cartoons.jarbasai=skill_film_chest_vintage_cartoons:FilmChestVintageCartoonsSkill'
setup(
# this is the package name that goes on pip
name='ovos-skill-film-chest-vintage-cartoons',
version='0.0.1',
description='ovos FilmChestVintageCartoons skill plugin',
url='https://github.com/JarbasSkills/skill-film-chest-vintage-cartoons',
author='JarbasAi',
author_email='[email protected]',
license='Apache-2.0',
package_dir={"skill_film_chest_vintage_cartoons": ""},
package_data={'skill_film_chest_vintage_cartoons': ['locale/*', 'ui/*']},
packages=['skill_film_chest_vintage_cartoons'],
include_package_data=True,
install_requires=["ovos_workshop~=0.0.5a1"],
keywords='ovos skill plugin',
entry_points={'ovos.plugin.skill': PLUGIN_ENTRY_POINT}
)