-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (27 loc) · 898 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_namespace_packages
from setup_helper import find_all_resource_files
# -- Apps Definition -- #
namespace = 'tethysapp'
app_package = 'test_app_store_aquaveo'
release_package = f'{namespace}-{app_package}'
# -- Python Dependencies -- #
dependencies = []
# -- Get Resource File -- #
resource_files = find_all_resource_files(app_package, namespace)
#hola comment hey
setup(
name=release_package,
version='0.0.4',
description='This is my testing app for submission and installation',
long_description='',
keywords='',
author='Aquaveo',
author_email='gromero@aquaveo.com',
url='https://github.com/Aquaveo/test_app_store_aquaveo',
license='MIT',
packages=find_namespace_packages(),
package_data={'': resource_files},
include_package_data=True,
zip_safe=False,
install_requires=dependencies,
)