bcijelly 0.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.
bcijelly-0.0.1/LICENSE ADDED
File without changes
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: bcijelly
3
+ Version: 0.0.1
4
+ Summary: BCI utilities and models
5
+ Author-email: Liyuan Han <hanliyuan@ion.ac.cn>
6
+ License-Expression: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Dynamic: license-file
File without changes
@@ -0,0 +1,16 @@
1
+ [project]
2
+ name = "bcijelly"
3
+ version = "0.0.1"
4
+ authors = [
5
+ { name="Liyuan Han", email="hanliyuan@ion.ac.cn" },
6
+ ]
7
+ description = "BCI utilities and models"
8
+ readme = "README.md"
9
+ requires-python = ">=3.9"
10
+ classifiers = [
11
+ "Programming Language :: Python :: 3",
12
+ "Operating System :: OS Independent",
13
+ ]
14
+ license = "MIT"
15
+ license-files = ["LICEN[CS]E*"]
16
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,2 @@
1
+ from .exanple import add_one
2
+ __all__ = ['add_one']
@@ -0,0 +1,2 @@
1
+ def add_one(number):
2
+ return number + 1
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: bcijelly
3
+ Version: 0.0.1
4
+ Summary: BCI utilities and models
5
+ Author-email: Liyuan Han <hanliyuan@ion.ac.cn>
6
+ License-Expression: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Dynamic: license-file
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/bcijelly/__init__.py
5
+ src/bcijelly/exanple.py
6
+ src/bcijelly.egg-info/PKG-INFO
7
+ src/bcijelly.egg-info/SOURCES.txt
8
+ src/bcijelly.egg-info/dependency_links.txt
9
+ src/bcijelly.egg-info/top_level.txt
10
+ tests/test_basic.py
@@ -0,0 +1 @@
1
+ bcijelly
@@ -0,0 +1,5 @@
1
+ from bcijelly import add_one
2
+
3
+ result = add_one(5)
4
+
5
+ print(f"result--------:{result}")