healthdatalayer 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of healthdatalayer might be problematic. Click here for more details.
- healthdatalayer-0.0.1/PKG-INFO +28 -0
- healthdatalayer-0.0.1/README.md +2 -0
- healthdatalayer-0.0.1/healthdatalayer.egg-info/PKG-INFO +28 -0
- healthdatalayer-0.0.1/healthdatalayer.egg-info/SOURCES.txt +7 -0
- healthdatalayer-0.0.1/healthdatalayer.egg-info/dependency_links.txt +1 -0
- healthdatalayer-0.0.1/healthdatalayer.egg-info/requires.txt +6 -0
- healthdatalayer-0.0.1/healthdatalayer.egg-info/top_level.txt +1 -0
- healthdatalayer-0.0.1/setup.cfg +4 -0
- healthdatalayer-0.0.1/setup.py +27 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: healthdatalayer
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Health Datalayer to access data from different sources
|
|
5
|
+
Author: Jesus Martinez
|
|
6
|
+
Author-email: jesusmartinez@noosds.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: setuptools
|
|
13
|
+
Requires-Dist: wheel
|
|
14
|
+
Requires-Dist: twine
|
|
15
|
+
Requires-Dist: sqlmodel
|
|
16
|
+
Requires-Dist: psycopg2-binary
|
|
17
|
+
Requires-Dist: python-dotenv
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
Dynamic: classifier
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: description-content-type
|
|
23
|
+
Dynamic: requires-dist
|
|
24
|
+
Dynamic: requires-python
|
|
25
|
+
Dynamic: summary
|
|
26
|
+
|
|
27
|
+
# health-data-layer
|
|
28
|
+
## Resume
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: healthdatalayer
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Health Datalayer to access data from different sources
|
|
5
|
+
Author: Jesus Martinez
|
|
6
|
+
Author-email: jesusmartinez@noosds.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: setuptools
|
|
13
|
+
Requires-Dist: wheel
|
|
14
|
+
Requires-Dist: twine
|
|
15
|
+
Requires-Dist: sqlmodel
|
|
16
|
+
Requires-Dist: psycopg2-binary
|
|
17
|
+
Requires-Dist: python-dotenv
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
Dynamic: classifier
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: description-content-type
|
|
23
|
+
Dynamic: requires-dist
|
|
24
|
+
Dynamic: requires-python
|
|
25
|
+
Dynamic: summary
|
|
26
|
+
|
|
27
|
+
# health-data-layer
|
|
28
|
+
## Resume
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open('requirements.txt') as f:
|
|
4
|
+
requirements=f.read().splitlines()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="healthdatalayer",
|
|
8
|
+
version="0.0.1",
|
|
9
|
+
include_package_data=True,
|
|
10
|
+
python_requires='>=3.10',
|
|
11
|
+
packages=find_packages(),
|
|
12
|
+
setup_requires=['setuptools-git-versioning'],
|
|
13
|
+
install_requires=requirements,
|
|
14
|
+
author="Jesus Martinez",
|
|
15
|
+
author_email="jesusmartinez@noosds.com",
|
|
16
|
+
description="Health Datalayer to access data from different sources",
|
|
17
|
+
long_description=open('README.md').read(),
|
|
18
|
+
long_description_content_type="text/markdown",
|
|
19
|
+
classifiers=[
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
],
|
|
24
|
+
version_config={
|
|
25
|
+
"dirty_template": "{tag}",
|
|
26
|
+
}
|
|
27
|
+
)
|