direl-ts-tool-kit 0.1.0__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
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: direl-ts-tool-kit
3
+ Version: 0.1.0
4
+ Summary: A toolbox for time series analysis and visualization.
5
+ Home-page: https://gitlab.com/direl/direl_tool_kit
6
+ Author: Tu Nombre Aquí
7
+ Author-email: diegorestrepoleal@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Topic :: Scientific/Engineering :: Visualization
14
+ Requires-Python: >=3.8
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENCE
17
+ Requires-Dist: pandas>=1.0.0
18
+ Requires-Dist: numpy>=1.18.0
19
+ Requires-Dist: matplotlib>=3.0.0
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: license-file
26
+ Dynamic: requires-dist
27
+ Dynamic: requires-python
28
+ Dynamic: summary
File without changes
@@ -0,0 +1,2 @@
1
+ from .plot.plot_style import *
2
+ from .plot.plot_ts import *
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: direl-ts-tool-kit
3
+ Version: 0.1.0
4
+ Summary: A toolbox for time series analysis and visualization.
5
+ Home-page: https://gitlab.com/direl/direl_tool_kit
6
+ Author: Tu Nombre Aquí
7
+ Author-email: diegorestrepoleal@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Topic :: Scientific/Engineering :: Visualization
14
+ Requires-Python: >=3.8
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENCE
17
+ Requires-Dist: pandas>=1.0.0
18
+ Requires-Dist: numpy>=1.18.0
19
+ Requires-Dist: matplotlib>=3.0.0
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: license-file
26
+ Dynamic: requires-dist
27
+ Dynamic: requires-python
28
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ LICENCE
2
+ README.md
3
+ setup.py
4
+ direl_ts_tool_kit/__init__.py
5
+ direl_ts_tool_kit.egg-info/PKG-INFO
6
+ direl_ts_tool_kit.egg-info/SOURCES.txt
7
+ direl_ts_tool_kit.egg-info/dependency_links.txt
8
+ direl_ts_tool_kit.egg-info/requires.txt
9
+ direl_ts_tool_kit.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ pandas>=1.0.0
2
+ numpy>=1.18.0
3
+ matplotlib>=3.0.0
@@ -0,0 +1 @@
1
+ direl_ts_tool_kit
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,27 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="direl-ts-tool-kit",
5
+ version="0.1.0",
6
+ description="A toolbox for time series analysis and visualization.",
7
+ long_description=open("README.md", encoding="utf-8").read(),
8
+ long_description_content_type="text/markdown",
9
+ author="Tu Nombre Aquí",
10
+ author_email="diegorestrepoleal@gmail.com",
11
+ url="https://gitlab.com/direl/direl_tool_kit",
12
+ packages=find_packages(),
13
+ install_requires=[
14
+ "pandas>=1.0.0",
15
+ "numpy>=1.18.0",
16
+ "matplotlib>=3.0.0",
17
+ ],
18
+ classifiers=[
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.9",
21
+ "License :: OSI Approved :: MIT License",
22
+ "Operating System :: OS Independent",
23
+ "Intended Audience :: Science/Research",
24
+ "Topic :: Scientific/Engineering :: Visualization",
25
+ ],
26
+ python_requires=">=3.8",
27
+ )