staran 0.1.1__tar.gz → 0.1.2__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.
- {staran-0.1.1/staran.egg-info → staran-0.1.2}/PKG-INFO +1 -1
- {staran-0.1.1 → staran-0.1.2}/setup.py +2 -2
- staran-0.1.2/staran/__init__.py +21 -0
- {staran-0.1.1 → staran-0.1.2/staran.egg-info}/PKG-INFO +1 -1
- {staran-0.1.1 → staran-0.1.2}/staran.egg-info/SOURCES.txt +3 -2
- staran-0.1.2/staran.egg-info/top_level.txt +1 -0
- staran-0.1.1/staran.egg-info/top_level.txt +0 -1
- {staran-0.1.1 → staran-0.1.2}/LICENSE +0 -0
- {staran-0.1.1 → staran-0.1.2}/README.md +0 -0
- {staran-0.1.1 → staran-0.1.2}/setup.cfg +0 -0
- {staran-0.1.1 → staran-0.1.2/staran}/tools/__init__.py +0 -0
- {staran-0.1.1 → staran-0.1.2/staran}/tools/date.py +0 -0
- {staran-0.1.1 → staran-0.1.2}/staran.egg-info/dependency_links.txt +0 -0
- {staran-0.1.1 → staran-0.1.2}/staran.egg-info/requires.txt +0 -0
@@ -2,14 +2,14 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='staran',
|
5
|
-
version='0.1.
|
5
|
+
version='0.1.2',
|
6
6
|
description='staran - 高性能Python工具库',
|
7
7
|
long_description=open('README.md', encoding='utf-8').read(),
|
8
8
|
long_description_content_type='text/markdown',
|
9
9
|
author='StarAn',
|
10
10
|
author_email='starlxa@icloud.com',
|
11
11
|
url='https://github.com/starlxa/staran',
|
12
|
-
packages=
|
12
|
+
packages=['staran', 'staran.tools'],
|
13
13
|
install_requires=[
|
14
14
|
'numpy>=1.20',
|
15
15
|
'pandas'
|
@@ -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'
|
@@ -1,10 +1,11 @@
|
|
1
1
|
LICENSE
|
2
2
|
README.md
|
3
3
|
setup.py
|
4
|
+
staran/__init__.py
|
4
5
|
staran.egg-info/PKG-INFO
|
5
6
|
staran.egg-info/SOURCES.txt
|
6
7
|
staran.egg-info/dependency_links.txt
|
7
8
|
staran.egg-info/requires.txt
|
8
9
|
staran.egg-info/top_level.txt
|
9
|
-
tools/__init__.py
|
10
|
-
tools/date.py
|
10
|
+
staran/tools/__init__.py
|
11
|
+
staran/tools/date.py
|
@@ -0,0 +1 @@
|
|
1
|
+
staran
|
@@ -1 +0,0 @@
|
|
1
|
-
tools
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|