Showing
10 changed files
with
43 additions
and
13 deletions
1 | +Metadata-Version: 2.1 | |
2 | +Name: application-deployer | |
3 | +Version: 0.0.1 | |
4 | +Summary: App deployer for aws environment | |
5 | +Home-page: https://gitlab.chromedia.com/ops/app-deployer.git | |
6 | +Author: Vincent Nambatac (ChromediaInc) | |
7 | +Author-email: vincent.nambatac@chromedia.com | |
8 | +License: UNKNOWN | |
9 | +Platform: UNKNOWN | |
10 | +Classifier: Programming Language :: Python :: 3 | |
11 | +Classifier: License :: OSI Approved :: MIT License | |
12 | +Classifier: Operating System :: OS Independent | |
13 | +Requires-Python: >=3.8 | |
14 | +License-File: LICENSE | |
15 | + | |
16 | +UNKNOWN | |
17 | + | ... | ... |
1 | +LICENSE | |
2 | +pyproject.toml | |
3 | +setup.cfg | |
4 | +setup.py.bak | |
5 | +application_deployer.egg-info/PKG-INFO | |
6 | +application_deployer.egg-info/SOURCES.txt | |
7 | +application_deployer.egg-info/dependency_links.txt | |
8 | +application_deployer.egg-info/top_level.txt | |
9 | +dbocl_pkg/MANIFEST.in | |
10 | +dbocl_pkg/__init__.py | |
11 | +dbocl_pkg/cdep.py | |
\ No newline at end of file | ... | ... |
1 | + | ... | ... |
1 | +dbocl_pkg | ... | ... |
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
1 | + | |
1 | 2 | [build-system] |
2 | 3 | requires = [ |
3 | - "setuptools>=54", | |
4 | - "wheel", | |
5 | - "boto3>=1.6.6", | |
6 | - "interruptingcow", | |
4 | + "setuptools >= 40.0.4", | |
5 | + "setuptools_scm >= 2.0.0", | |
6 | + "wheel >= 0.29.0", | |
7 | + "boto3 >= 1.6.6", | |
8 | + "interruptingcow >= 0.8", | |
7 | 9 | "pytz" |
8 | -] | |
\ No newline at end of file | ||
10 | +] | |
11 | +build-backend = 'setuptools.build_meta' | |
\ No newline at end of file | ... | ... |
... | ... | @@ -3,26 +3,23 @@ |
3 | 3 | [metadata] |
4 | 4 | name = application-deployer |
5 | 5 | version = 0.0.1 |
6 | -author = leecher (ChromediaInc) | |
6 | +author = Vincent Nambatac (ChromediaInc) | |
7 | 7 | author_email = vincent.nambatac@chromedia.com |
8 | 8 | description = App deployer for aws environment |
9 | -long_description_content_type = text/markdown | |
9 | +url = https://gitlab.chromedia.com/ops/app-deployer.git | |
10 | 10 | # long_description=long_description, |
11 | 11 | |
12 | 12 | # keywords=['python', 'video', 'stream', 'video stream', 'camera stream', 'sockets'], |
13 | 13 | classifiers = |
14 | - Development Status :: 1 - Staging | |
15 | - Intended Audience :: Developers | |
16 | 14 | Programming Language :: Python :: 3 |
17 | - Operating System :: Unix | |
18 | - Operating System :: MacOS :: MacOS X | |
19 | - Operating System :: Microsoft :: Windows | |
20 | 15 | License :: OSI Approved :: MIT License |
16 | + Operating System :: OS Independent | |
21 | 17 | |
22 | 18 | [options] |
23 | 19 | packages = find: |
24 | -python_requires = >=3.7 | |
20 | +python_requires = >=3.8 | |
25 | 21 | include_package_data = True |
26 | 22 | |
27 | 23 | |
28 | 24 | |
25 | + | ... | ... |