Refactoring the sdc-BE-init python scripts
[sdc.git] / catalog-be / src / main / resources / scripts / setup.py
1 from setuptools import setup, find_packages
2
3 setup(
4     name='sdcBePy',
5     version='1.7',
6     packages=find_packages(),
7     url='',
8     license='',
9     author='',
10     author_email='',
11     description='',
12     package_data={'': ['data/*.json']},
13     include_package_data=True,
14     entry_points={
15         "console_scripts": [
16             "sdcuserinit=sdcBePy.users.run:main",
17             "sdcimportall=sdcBePy.tosca.imports.run:main",
18             "sdcimportdata=sdcBePy.tosca.imports.runNormativeElement:run_import_data",
19             "sdcimportcapabilities=sdcBePy.tosca.imports.runNormativeElement:run_import_capabilities",
20             "sdcimportrelationship=sdcBePy.tosca.imports.runNormativeElement:run_import_relationship",
21             "sdcimportinterfacelifecycle=sdcBePy.tosca.imports.runNormativeElement:run_import_interface_lifecycle",
22             "sdcimportcategories=sdcBePy.tosca.imports.runNormativeElement:run_import_categories",
23             "sdcimportgroup=sdcBePy.tosca.imports.runNormativeElement:run_import_group",
24             "sdcimportpolicy=sdcBePy.tosca.imports.runNormativeElement:run_import_policy",
25             "sdcimportnormative=sdcBePy.tosca.imports.runNormativeType:run_import_normative",
26             "sdcimportheat=sdcBePy.tosca.imports.runNormativeType:run_import_heat",
27             "sdcimportnfv=sdcBePy.tosca.imports.runNormativeType:run_import_nfv",
28             "sdcimportonap=sdcBePy.tosca.imports.runNormativeType:run_import_onap",
29             "sdcimportsol=sdcBePy.tosca.imports.runNormativeType:run_import_sol",
30             "sdcimportannotation=sdcBePy.tosca.imports.runNormativeType:run_import_annotation",
31             "sdcimportgeneric=sdcBePy.tosca.imports.runGenericNormative:main",
32             "sdcupgradeall=sdcBePy.tosca.upgrade.run:main",
33             "sdcupgradenfv=sdcBePy.tosca.upgrade.runUpgradeNormative:run_upgrade_nfv",
34             "sdcupgradeonap=sdcBePy.tosca.upgrade.runUpgradeNormative:run_upgrade_onap",
35             "sdcupgradesol=sdcBePy.tosca.upgrade.runUpgradeNormative:run_upgrade_sol",
36             "sdcupgradeheat1707=sdcBePy.tosca.upgrade.runUpgradeNormative:run_upgrade_heat1707",
37             "sdcupgradeheat1707_3537=sdcBePy.tosca.upgrade.runUpgradeNormative:run_upgrade_heat1707_3537",
38             "sdcupgradeheatversion=sdcBePy.tosca.upgrade.runUpgradeNormative:run_upgrade_heat_version",
39             "sdccheckbackend=sdcBePy.common.healthCheck:main",
40             "sdcconsumerinit=sdcBePy.consumers.run:main"
41         ]
42     }, install_requires=['pycurl']
43 )