staran 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl
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.
- staran/__init__.py +21 -0
- {staran-0.1.1.dist-info → staran-0.1.2.dist-info}/METADATA +1 -1
- staran-0.1.2.dist-info/RECORD +8 -0
- staran-0.1.2.dist-info/top_level.txt +1 -0
- staran-0.1.1.dist-info/RECORD +0 -7
- staran-0.1.1.dist-info/top_level.txt +0 -1
- {tools → staran/tools}/__init__.py +0 -0
- {tools → staran/tools}/date.py +0 -0
- {staran-0.1.1.dist-info → staran-0.1.2.dist-info}/WHEEL +0 -0
- {staran-0.1.1.dist-info → staran-0.1.2.dist-info}/licenses/LICENSE +0 -0
staran/__init__.py
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
# -*- coding: utf-8 -*-
|
3
|
+
|
4
|
+
"""
|
5
|
+
Staran - 简化的Python工具库
|
6
|
+
提供日期处理等实用功能,基于Python标准库实现
|
7
|
+
"""
|
8
|
+
|
9
|
+
# 导入主要功能
|
10
|
+
from .tools import Date
|
11
|
+
|
12
|
+
# 主要导出
|
13
|
+
__all__ = [
|
14
|
+
'Date'
|
15
|
+
]
|
16
|
+
|
17
|
+
# 包信息
|
18
|
+
__version__ = '1.0.0'
|
19
|
+
__author__ = 'Staran Team'
|
20
|
+
__description__ = 'Simple Python utilities based on standard library'
|
21
|
+
__license__ = 'MIT'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
staran/__init__.py,sha256=wSMdNd2y24sehitRAG7wOaewvcMQGbzWCKf9RMTt-3I,393
|
2
|
+
staran/tools/__init__.py,sha256=FHWxsrVTBYoqcZaMgbZacRbDZWliqUN8gsS4F0I_rDQ,348
|
3
|
+
staran/tools/date.py,sha256=UNydI8UyxgjcI1FTnLe0efPK_W6xE_xzgo1bhPU4xNM,7181
|
4
|
+
staran-0.1.2.dist-info/licenses/LICENSE,sha256=2EmsBIyDCono4iVXNpv5_px9qt2b7hfPq1WuyGVMNP4,1361
|
5
|
+
staran-0.1.2.dist-info/METADATA,sha256=VVS6or4C42EOP3_gaZrMT6ZJDBOqJI_PrUCGgA4sPEg,5046
|
6
|
+
staran-0.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
7
|
+
staran-0.1.2.dist-info/top_level.txt,sha256=NOUZtXSh5oSIEjHrC0lQ9WmoKtD010Q00dghWyag-Zs,7
|
8
|
+
staran-0.1.2.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
staran
|
staran-0.1.1.dist-info/RECORD
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
staran-0.1.1.dist-info/licenses/LICENSE,sha256=2EmsBIyDCono4iVXNpv5_px9qt2b7hfPq1WuyGVMNP4,1361
|
2
|
-
tools/__init__.py,sha256=FHWxsrVTBYoqcZaMgbZacRbDZWliqUN8gsS4F0I_rDQ,348
|
3
|
-
tools/date.py,sha256=UNydI8UyxgjcI1FTnLe0efPK_W6xE_xzgo1bhPU4xNM,7181
|
4
|
-
staran-0.1.1.dist-info/METADATA,sha256=NshFvN_VxcTDDsATq7NQ7KESKdEzXX_pIo705s1tHgg,5046
|
5
|
-
staran-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
-
staran-0.1.1.dist-info/top_level.txt,sha256=Ib4ZA2MPBpiT0tC-0qt5RcP9g42gLddRbx9PiYGa-Fc,6
|
7
|
-
staran-0.1.1.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
tools
|
File without changes
|
{tools → staran/tools}/date.py
RENAMED
File without changes
|
File without changes
|
File without changes
|