py-ctln 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.
py_ctln-0.0.1/LICENSE ADDED
File without changes
py_ctln-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: py_ctln
3
+ Version: 0.0.1
4
+ Summary: A package for assisting in the research of Combinatorial Threshold Linear Networks
5
+ Author: Caitlyn Parmelee
6
+ Author-email: Olivia Kaminske <livkaminske@gmail.com>
7
+ License-File: LICENSE
8
+ Requires-Python: >=3.10
9
+ Requires-Dist: matplotlib
10
+ Requires-Dist: numpy
11
+ Requires-Dist: scipy
12
+ Description-Content-Type: text/markdown
13
+
14
+ # The py_ctln Package README
15
+ Please note that this package is in its earliest beta phase. Nothing here is finalized whatsoever. Use at your own risk!
16
+ ## What is py_ctln?
17
+ blah blah blah what is the package and whatnot...
18
+
19
+ ## Installation
20
+ blah blah blah
21
+
22
+ ## Usage
23
+ To import the library for usage, include the following line of code with your other imports:
24
+ ```
25
+ from py_ctln import CTLN
26
+ ```
27
+
28
+ ## Docs
29
+ Blah blah blah (maybe an html file? We'll see...)
@@ -0,0 +1,16 @@
1
+ # The py_ctln Package README
2
+ Please note that this package is in its earliest beta phase. Nothing here is finalized whatsoever. Use at your own risk!
3
+ ## What is py_ctln?
4
+ blah blah blah what is the package and whatnot...
5
+
6
+ ## Installation
7
+ blah blah blah
8
+
9
+ ## Usage
10
+ To import the library for usage, include the following line of code with your other imports:
11
+ ```
12
+ from py_ctln import CTLN
13
+ ```
14
+
15
+ ## Docs
16
+ Blah blah blah (maybe an html file? We'll see...)
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling >= 1.29.0"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "py_ctln"
7
+ version = "0.0.1"
8
+ dependencies = [
9
+ "numpy",
10
+ "scipy",
11
+ "matplotlib"
12
+ ]
13
+ authors = [
14
+ { name="Olivia Kaminske", email="livkaminske@gmail.com" },
15
+ { name="Caitlyn Parmelee" },
16
+ ]
17
+ description = "A package for assisting in the research of Combinatorial Threshold Linear Networks"
18
+ readme = "README.md"
19
+ requires-python = ">=3.10"
20
+
21
+ [tool.hatch.build]
22
+ include = [
23
+ "src/py_ctln/known_network_data/*.pkl"
24
+ ]
25
+
26
+ [tool.hatch.build.targets.wheel]
27
+ packages = ["src/py_ctln"]