-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 763 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 763 Bytes
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-ccc.jarbasai=skill_ccc:CultCinemaClassicsSkill'
setup(
# this is the package name that goes on pip
name='ovos-skill-ccc',
version='0.0.1',
description='ovos cult cinema classics skill plugin',
url='https://github.com/JarbasSkills/skill-ccc',
author='JarbasAi',
author_email='jarbasai@mailfence.com',
license='Apache-2.0',
package_dir={"skill_ccc": ""},
package_data={'skill_ccc': ['locale/*', 'ui/*']},
packages=['skill_ccc'],
include_package_data=True,
install_requires=["ovos_workshop~=0.0.5a1"],
keywords='ovos skill plugin',
entry_points={'ovos.plugin.skill': PLUGIN_ENTRY_POINT}
)