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.
Potentially problematic release.
This version of vtlengine might be problematic. Click here for more details.
- vtlengine-0.1/Code/__init__.py +0 -0
- vtlengine-0.1/PKG-INFO +11 -0
- vtlengine-0.1/setup.cfg +4 -0
- vtlengine-0.1/setup.py +27 -0
- vtlengine-0.1/vtlengine.egg-info/PKG-INFO +11 -0
- vtlengine-0.1/vtlengine.egg-info/SOURCES.txt +6 -0
- vtlengine-0.1/vtlengine.egg-info/dependency_links.txt +1 -0
- vtlengine-0.1/vtlengine.egg-info/top_level.txt +1 -0
|
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
|
vtlengine-0.1/setup.cfg
ADDED
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Code
|