batplot 1.0.0__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.
batplot-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: batplot
3
+ Version: 1.0.0
4
+ Summary: Interactively plot XRD, PDF, and XAS data.
5
+ Author-email: Your Name <your@email.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: numpy
9
+ Requires-Dist: matplotlib
@@ -0,0 +1 @@
1
+ # batplot package init
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: batplot
3
+ Version: 1.0.0
4
+ Summary: Interactively plot XRD, PDF, and XAS data.
5
+ Author-email: Your Name <your@email.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: numpy
9
+ Requires-Dist: matplotlib
@@ -0,0 +1,8 @@
1
+ pyproject.toml
2
+ batplot/__init__.py
3
+ batplot.egg-info/PKG-INFO
4
+ batplot.egg-info/SOURCES.txt
5
+ batplot.egg-info/dependency_links.txt
6
+ batplot.egg-info/entry_points.txt
7
+ batplot.egg-info/requires.txt
8
+ batplot.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ batplot = batplot.batplot:main
@@ -0,0 +1,2 @@
1
+ numpy
2
+ matplotlib
@@ -0,0 +1 @@
1
+ batplot
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "batplot"
7
+ version = "1.0.0"
8
+ description = "Interactively plot XRD, PDF, and XAS data."
9
+ authors = [
10
+ { name="Your Name", email="your@email.com" }
11
+ ]
12
+ readme = "README.md"
13
+ requires-python = ">=3.7"
14
+ dependencies = [
15
+ "numpy",
16
+ "matplotlib"
17
+ ]
18
+
19
+ [project.scripts]
20
+ batplot = "batplot.batplot:main"
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["."]
24
+ include = ["batplot*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+