vtlengine 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.
File without changes
vtlengine-0.1/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: vtlengine
3
+ Version: 0.1
4
+ Summary: A VTL Engine based on python
5
+ Home-page:
6
+ Author: MeaningfulData
7
+ Author-email: info@meaningfuldata.eu
8
+ Classifier: Programming Language :: Python :: 3
9
+ Description-Content-Type: text/markdown
10
+
11
+ A VTL Engine based on python
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
vtlengine-0.1/setup.py ADDED
@@ -0,0 +1,27 @@
1
+ import os
2
+
3
+ import setuptools
4
+
5
+ setupPath = os.path.abspath(os.path.dirname(__file__))
6
+
7
+ about = {}
8
+ with open('__version__.py', 'r') as f:
9
+ exec(f.read(), about)
10
+
11
+ setuptools.setup(
12
+ name=about['__title__'],
13
+ version=about['__version__'],
14
+ author=about['__author__'],
15
+ author_email=about['__author_email__'],
16
+ description=about['__description__'],
17
+ long_description=about['__description__'],
18
+ long_description_content_type="text/markdown",
19
+ url=about['__url__'],
20
+ packages=setuptools.find_packages(),
21
+ include_package_data=True,
22
+ classifiers=[
23
+ "Programming Language :: Python :: 3",
24
+ ],
25
+ install_requires=[
26
+ ],
27
+ )
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: vtlengine
3
+ Version: 0.1
4
+ Summary: A VTL Engine based on python
5
+ Home-page:
6
+ Author: MeaningfulData
7
+ Author-email: info@meaningfuldata.eu
8
+ Classifier: Programming Language :: Python :: 3
9
+ Description-Content-Type: text/markdown
10
+
11
+ A VTL Engine based on python
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ Code/__init__.py
3
+ vtlengine.egg-info/PKG-INFO
4
+ vtlengine.egg-info/SOURCES.txt
5
+ vtlengine.egg-info/dependency_links.txt
6
+ vtlengine.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ Code