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.
- ctrecon-0.0.1/MANIFEST.in +1 -0
- ctrecon-0.0.1/PKG-INFO +12 -0
- ctrecon-0.0.1/pyproject.toml +31 -0
- ctrecon-0.0.1/setup.cfg +4 -0
- ctrecon-0.0.1/setup.py +18 -0
- ctrecon-0.0.1/src/ctrecon/VERSION +1 -0
- ctrecon-0.0.1/src/ctrecon/version.py +6 -0
- ctrecon-0.0.1/src/ctrecon.egg-info/PKG-INFO +12 -0
- ctrecon-0.0.1/src/ctrecon.egg-info/SOURCES.txt +10 -0
- ctrecon-0.0.1/src/ctrecon.egg-info/dependency_links.txt +1 -0
- ctrecon-0.0.1/src/ctrecon.egg-info/requires.txt +1 -0
- ctrecon-0.0.1/src/ctrecon.egg-info/top_level.txt +1 -0
|
@@ -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
|
+
|
ctrecon-0.0.1/setup.cfg
ADDED
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,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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
numpy
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ctrecon
|