seqbuild 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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Richard Pham
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: seqbuild
3
+ Version: 0.0.1
4
+ Summary: A collection of algorithms for pseudo-random number generation.
5
+ Home-page: https://github.com/Changissnz/seqbuild
6
+ Author: Richard Pham
7
+ Author-email: Richard Pham <phamrichard45@gmail.com>
8
+ License-Expression: MIT
9
+ Project-URL: Homepage, https://github.com/changissnz/seqbuild
10
+ Project-URL: Issues, https://github.com/changissnz/seqbuild/issues
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE.txt
16
+ Dynamic: author
17
+ Dynamic: home-page
18
+ Dynamic: license-file
19
+
20
+ # About: Seqbuild
21
+
22
+ Go to the Github project, [Seqbuild](https://www.github.com/changissnz/seqbuild)
23
+ for more information.
24
+
25
+ # Basic Usage
26
+
27
+ After installation, the below script would load up the user interface.
28
+
29
+ ```
30
+ from seqbuild.face import sb_ui
31
+
32
+ sb_ui.run_sb_app()
33
+ ```
34
+
35
+ Inside the interface, there is a HELP button. Additionally, for any term T of
36
+ question, submit
37
+
38
+ ```
39
+ help T.
40
+ ```
41
+
42
+ for more details.
43
+
@@ -0,0 +1,24 @@
1
+ # About: Seqbuild
2
+
3
+ Go to the Github project, [Seqbuild](https://www.github.com/changissnz/seqbuild)
4
+ for more information.
5
+
6
+ # Basic Usage
7
+
8
+ After installation, the below script would load up the user interface.
9
+
10
+ ```
11
+ from seqbuild.face import sb_ui
12
+
13
+ sb_ui.run_sb_app()
14
+ ```
15
+
16
+ Inside the interface, there is a HELP button. Additionally, for any term T of
17
+ question, submit
18
+
19
+ ```
20
+ help T.
21
+ ```
22
+
23
+ for more details.
24
+
@@ -0,0 +1,19 @@
1
+ [project]
2
+ name = "seqbuild"
3
+ version = "0.0.1"
4
+ authors = [
5
+ { name="Richard Pham", email="phamrichard45@gmail.com" },
6
+ ]
7
+ description = 'A collection of algorithms for pseudo-random number generation.'
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
+
17
+ [project.urls]
18
+ Homepage = "https://github.com/changissnz/seqbuild"
19
+ Issues = "https://github.com/changissnz/seqbuild/issues"
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: seqbuild
3
+ Version: 0.0.1
4
+ Summary: A collection of algorithms for pseudo-random number generation.
5
+ Home-page: https://github.com/Changissnz/seqbuild
6
+ Author: Richard Pham
7
+ Author-email: Richard Pham <phamrichard45@gmail.com>
8
+ License-Expression: MIT
9
+ Project-URL: Homepage, https://github.com/changissnz/seqbuild
10
+ Project-URL: Issues, https://github.com/changissnz/seqbuild/issues
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE.txt
16
+ Dynamic: author
17
+ Dynamic: home-page
18
+ Dynamic: license-file
19
+
20
+ # About: Seqbuild
21
+
22
+ Go to the Github project, [Seqbuild](https://www.github.com/changissnz/seqbuild)
23
+ for more information.
24
+
25
+ # Basic Usage
26
+
27
+ After installation, the below script would load up the user interface.
28
+
29
+ ```
30
+ from seqbuild.face import sb_ui
31
+
32
+ sb_ui.run_sb_app()
33
+ ```
34
+
35
+ Inside the interface, there is a HELP button. Additionally, for any term T of
36
+ question, submit
37
+
38
+ ```
39
+ help T.
40
+ ```
41
+
42
+ for more details.
43
+
@@ -0,0 +1,8 @@
1
+ LICENSE.txt
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ seqbuild.egg-info/PKG-INFO
6
+ seqbuild.egg-info/SOURCES.txt
7
+ seqbuild.egg-info/dependency_links.txt
8
+ seqbuild.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open('README.md') as f:
4
+ readme = f.read()
5
+
6
+ setup(
7
+ name='seqbuild',
8
+ version='0.0.1',
9
+ description='A collection of algorithms for pseudo-random number generation.',
10
+ long_description=readme,
11
+ author='Richard Pham',
12
+ author_email='phamrichard45@gmail.com',
13
+ url='https://github.com/Changissnz/seqbuild',
14
+ #license=LICENSE,
15
+ packages=find_packages(exclude=('tests','docs'))
16
+ )