func2stream 0.0.0__tar.gz → 0.0.0.dev20240519__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.
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/PKG-INFO +1 -1
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/func2stream.egg-info/PKG-INFO +1 -1
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/func2stream.egg-info/SOURCES.txt +1 -0
- func2stream-0.0.0.dev20240519/pyproject.toml +3 -0
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/setup.py +7 -1
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/LICENSE +0 -0
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/README.md +0 -0
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/func2stream.egg-info/dependency_links.txt +0 -0
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/func2stream.egg-info/requires.txt +0 -0
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/func2stream.egg-info/top_level.txt +0 -0
- {func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: func2stream
|
|
3
|
-
Version: 0.0.0
|
|
3
|
+
Version: 0.0.0.dev20240519
|
|
4
4
|
Summary: Effortlessly transform functions into asynchronous elements for building high-performance pipelines
|
|
5
5
|
Home-page: https://github.com/BICHENG/func2stream
|
|
6
6
|
Author: BI CHENG
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: func2stream
|
|
3
|
-
Version: 0.0.0
|
|
3
|
+
Version: 0.0.0.dev20240519
|
|
4
4
|
Summary: Effortlessly transform functions into asynchronous elements for building high-performance pipelines
|
|
5
5
|
Home-page: https://github.com/BICHENG/func2stream
|
|
6
6
|
Author: BI CHENG
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
+
import os
|
|
1
2
|
from setuptools import setup, find_packages
|
|
3
|
+
from datetime import datetime
|
|
4
|
+
|
|
5
|
+
date_suffix = datetime.now().strftime("%Y%m%d") #YYYYMMDD
|
|
6
|
+
base_version = '0.0.0'
|
|
7
|
+
full_version = f"{base_version}.dev{date_suffix}"
|
|
2
8
|
|
|
3
9
|
setup(
|
|
4
10
|
name='func2stream',
|
|
5
|
-
version=
|
|
11
|
+
version=full_version,
|
|
6
12
|
description='Effortlessly transform functions into asynchronous elements for building high-performance pipelines',
|
|
7
13
|
long_description=open('README.md').read(),
|
|
8
14
|
long_description_content_type='text/markdown',
|
|
File without changes
|
|
File without changes
|
{func2stream-0.0.0 → func2stream-0.0.0.dev20240519}/func2stream.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|