ctrecon 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 @@
1
+ include src/ctrecon/VERSION
ctrecon-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: ctrecon
3
+ Version: 0.0.1
4
+ Summary: an interface and some tools for computed tomography recontruction
5
+ Author-email: "J. Hoffman" <contact@jmh.lol>
6
+ Project-URL: Homepage, https://gitlab.com/hoffman-lab/ctrecon
7
+ Project-URL: Bug Tracker, https://gitlab.com/hoffman-lab/ctrecon/issues
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: numpy
@@ -0,0 +1,31 @@
1
+ [project]
2
+ name = "ctrecon"
3
+ authors = [
4
+ { name = "J. Hoffman", email = "contact@jmh.lol" },
5
+ ]
6
+ description = "an interface and some tools for computed tomography recontruction"
7
+ readme = "README.md"
8
+ requires-python = ">=3.9"
9
+ classifiers = [
10
+ "Programming Language :: Python :: 3",
11
+ "Operating System :: OS Independent",
12
+ ]
13
+ # Eventually, psycopg2/psycopg
14
+ # dependencies = ["aiohttp", "vyper-config", "numpy"]
15
+ dependencies = ["numpy"]
16
+ dynamic = ["version"]
17
+
18
+ [build-system]
19
+ requires = ["setuptools"]
20
+ build-backend = "setuptools.build_meta:__legacy__"
21
+ # The difference between `__legacy__` and the regular `build_meta`
22
+ # is that `__legacy__` does the equivalent of
23
+ # `sys.path.insert(0, os.path.dirname(__file__))`.
24
+ # This allows you to `import` your modules from the `CWD`.
25
+ # If you don't like using `__legacy__` you can
26
+ # manually add `CWD` to `sys.path` inside your `setup.py`.
27
+
28
+ [project.urls]
29
+ "Homepage" = "https://gitlab.com/hoffman-lab/ctrecon"
30
+ "Bug Tracker" = "https://gitlab.com/hoffman-lab/ctrecon/issues"
31
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
ctrecon-0.0.1/setup.py ADDED
@@ -0,0 +1,18 @@
1
+ # setup.py
2
+ import shutil
3
+ from setuptools import setup
4
+
5
+ with open("src/ctrecon/VERSION", "r") as f:
6
+ version = f.read()
7
+
8
+ version = version.replace("v", "")
9
+ res = version.split("-")
10
+
11
+ # Probably a little brittle, but working for now
12
+ # Update: it was brittle
13
+ # if len(res) > 1:
14
+ # version = res[0] + ".dev" + res[1] + "+" + res[2]
15
+ # else:
16
+ # version = res[0].strip()
17
+
18
+ setup(version=f"{version}", test_suite="tests")
@@ -0,0 +1 @@
1
+ v0.0.1
@@ -0,0 +1,6 @@
1
+ import os
2
+
3
+ if __name__ == "__main__":
4
+ ver_path = os.path.join(os.path.dirname(__file__), "VERSION")
5
+ with open(ver_path, "r") as f:
6
+ print(f.read())
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: ctrecon
3
+ Version: 0.0.1
4
+ Summary: an interface and some tools for computed tomography recontruction
5
+ Author-email: "J. Hoffman" <contact@jmh.lol>
6
+ Project-URL: Homepage, https://gitlab.com/hoffman-lab/ctrecon
7
+ Project-URL: Bug Tracker, https://gitlab.com/hoffman-lab/ctrecon/issues
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: numpy
@@ -0,0 +1,10 @@
1
+ MANIFEST.in
2
+ pyproject.toml
3
+ setup.py
4
+ src/ctrecon/VERSION
5
+ src/ctrecon/version.py
6
+ src/ctrecon.egg-info/PKG-INFO
7
+ src/ctrecon.egg-info/SOURCES.txt
8
+ src/ctrecon.egg-info/dependency_links.txt
9
+ src/ctrecon.egg-info/requires.txt
10
+ src/ctrecon.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ numpy
@@ -0,0 +1 @@
1
+ ctrecon