data-flow-diagram 1.12.0__tar.gz → 1.12.1.post1__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.
Files changed (25) hide show
  1. data_flow_diagram-1.12.0/setup.py → data_flow_diagram-1.12.1.post1/CHANGES.md +5 -66
  2. data_flow_diagram-1.12.1.post1/MANIFEST.in +1 -0
  3. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/PKG-INFO +1 -1
  4. data_flow_diagram-1.12.1.post1/TODO.md +26 -0
  5. data_flow_diagram-1.12.1.post1/setup.py +69 -0
  6. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram.egg-info/PKG-INFO +1 -1
  7. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram.egg-info/SOURCES.txt +3 -0
  8. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/README.md +0 -0
  9. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/pyproject.toml +0 -0
  10. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/setup.cfg +0 -0
  11. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/__init__.py +0 -0
  12. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/config.py +0 -0
  13. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/dependency_checker.py +0 -0
  14. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/dfd.py +0 -0
  15. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/dfd_dot_templates.py +0 -0
  16. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/dot.py +0 -0
  17. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/error.py +0 -0
  18. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/markdown.py +0 -0
  19. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/model.py +0 -0
  20. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/parser.py +0 -0
  21. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram/scanner.py +0 -0
  22. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram.egg-info/dependency_links.txt +0 -0
  23. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram.egg-info/entry_points.txt +0 -0
  24. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram.egg-info/requires.txt +0 -0
  25. {data_flow_diagram-1.12.0 → data_flow_diagram-1.12.1.post1}/src/data_flow_diagram.egg-info/top_level.txt +0 -0
@@ -1,26 +1,21 @@
1
- """A setuptools based setup module.
1
+ ## Version 1.12.1.post1:
2
2
 
3
- See:
4
- https://packaging.python.org/guides/distributing-packages-using-setuptools/
5
- """
6
-
7
- from setuptools import setup, find_packages
8
- import pathlib
9
-
10
- CHANGES = """
3
+ - CHANGES.md is read by setup.py to deduce the version.
11
4
 
12
5
  ## Version 1.12.0:
6
+
13
7
  - Support style (and hence attrib) on Stores and Channels.
14
8
 
15
9
  ## Version 1.11.1.post2:
16
10
 
17
11
  Bug fixes:
12
+
18
13
  - Apply attribs on frames.
19
14
  - Attribs are matched by whole names, so e.g. DATA and DATABASE will work.
20
15
 
21
16
  Improvements:
17
+
22
18
  - 'make install' to install locally.
23
- - CHANGES.md is read by setup.py to deduce the version.
24
19
 
25
20
  ## Version 1.11.0:
26
21
 
@@ -101,59 +96,3 @@ Improvements:
101
96
  ## Version 1.0.0
102
97
 
103
98
  - Initial release.
104
- """
105
-
106
- here = pathlib.Path(__file__).parent.resolve()
107
- long_description = (here / "README.md").read_text(encoding="utf-8")
108
-
109
- # extract version
110
- lines = CHANGES.splitlines()
111
- lines = [l[2:] for l in lines if l.startswith('##')]
112
- version = lines[0].strip().split(':', 1)[0].split()[-1].strip()
113
-
114
- setup(
115
- name="data-flow-diagram",
116
- version=version,
117
- description="Commandline tool to generate data flow diagrams from text",
118
- long_description=long_description,
119
- long_description_content_type="text/markdown",
120
- url="https://github.com/pbauermeister/dfd",
121
- author="Pascal Bauermeister",
122
- author_email="pascal.bauermeister@gmail.com",
123
- classifiers=[
124
- # https://pypi.org/classifiers/ :
125
- "Development Status :: 3 - Alpha",
126
- "Intended Audience :: Information Technology",
127
- "Topic :: Software Development",
128
- "Topic :: Software Development :: Documentation",
129
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
130
- "Programming Language :: Python :: 3",
131
- ],
132
- keywords="diagram-generator, development, tool",
133
- license="GNU General Public License v3 (GPLv3)",
134
- package_dir={"": "src"},
135
- packages=find_packages(where="src"),
136
- python_requires=">=3.10, <4",
137
- install_requires=[],
138
- extras_require={
139
- "dev": ["check-manifest"],
140
- "test": ["coverage"],
141
- },
142
- package_data={
143
- # "data_flow_diagram": ["tbdpackage__data.dat"],
144
- },
145
- # data_files=[('data_flow_diagram', ["VERSION"])],
146
- # The following would provide a command called `data-flow-diagram` which
147
- # executes the function `main` from this package when invoked:
148
- entry_points={
149
- "console_scripts": [
150
- "data-flow-diagram=data_flow_diagram:main",
151
- ],
152
- },
153
- project_urls={
154
- "Bug Reports": "https://github.com/pbauermeister/dfd/issues",
155
- # "Funding": "https://donate.pypi.org",
156
- # "Say Thanks!": "http://saythanks.io/to/example",
157
- "Source": "https://github.com/pbauermeister/dfd",
158
- },
159
- )
@@ -0,0 +1 @@
1
+ include *.md
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: data-flow-diagram
3
- Version: 1.12.0
3
+ Version: 1.12.1.post1
4
4
  Summary: Commandline tool to generate data flow diagrams from text
5
5
  Home-page: https://github.com/pbauermeister/dfd
6
6
  Author: Pascal Bauermeister
@@ -0,0 +1,26 @@
1
+ # TODO
2
+
3
+ P1:
4
+ - consider \l and \r when wrapping lines
5
+ - Redefine ITEM? by ITEM!
6
+ - percent_zoom, default 75?
7
+ - bg color
8
+
9
+ P2:
10
+ - #option ARGS: like cmdline args
11
+ - #dot inline-code
12
+
13
+ Tests:
14
+ - omit label
15
+ - arrows
16
+ - #include snippets and file
17
+ - vertical
18
+ - context
19
+ - attrs
20
+ - A -> B vs B <- A
21
+ - relaxed
22
+ - none
23
+ - wrapping, style *-text-width
24
+ - dependencies
25
+ - all connections, back and relaxed
26
+ - control
@@ -0,0 +1,69 @@
1
+ """A setuptools based setup module.
2
+
3
+ See:
4
+ https://packaging.python.org/guides/distributing-packages-using-setuptools/
5
+ """
6
+
7
+ from setuptools import setup, find_packages
8
+ import pathlib
9
+
10
+ changes = """
11
+
12
+ """
13
+
14
+ here = pathlib.Path(__file__).parent.resolve()
15
+ long_description = (here / "README.md").read_text(encoding="utf-8")
16
+
17
+ # extract version
18
+ with open(here / "CHANGES.md", encoding="utf-8") as f:
19
+ changes = f.read()
20
+ lines = changes.splitlines()
21
+ lines = [l[2:] for l in lines if l.startswith('##')]
22
+ version = lines[0].strip().split(':', 1)[0].split()[-1].strip()
23
+
24
+ setup(
25
+ name="data-flow-diagram",
26
+ version=version,
27
+ description="Commandline tool to generate data flow diagrams from text",
28
+ long_description=long_description,
29
+ long_description_content_type="text/markdown",
30
+ url="https://github.com/pbauermeister/dfd",
31
+ author="Pascal Bauermeister",
32
+ author_email="pascal.bauermeister@gmail.com",
33
+ classifiers=[
34
+ # https://pypi.org/classifiers/ :
35
+ "Development Status :: 3 - Alpha",
36
+ "Intended Audience :: Information Technology",
37
+ "Topic :: Software Development",
38
+ "Topic :: Software Development :: Documentation",
39
+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
40
+ "Programming Language :: Python :: 3",
41
+ ],
42
+ keywords="diagram-generator, development, tool",
43
+ license="GNU General Public License v3 (GPLv3)",
44
+ package_dir={"": "src"},
45
+ packages=find_packages(where="src"),
46
+ python_requires=">=3.10, <4",
47
+ install_requires=[],
48
+ extras_require={
49
+ "dev": ["check-manifest"],
50
+ "test": ["coverage"],
51
+ },
52
+ package_data={
53
+ # "data_flow_diagram": ["tbdpackage__data.dat"],
54
+ },
55
+ # data_files=[('data_flow_diagram', ["VERSION"])],
56
+ # The following would provide a command called `data-flow-diagram` which
57
+ # executes the function `main` from this package when invoked:
58
+ entry_points={
59
+ "console_scripts": [
60
+ "data-flow-diagram=data_flow_diagram:main",
61
+ ],
62
+ },
63
+ project_urls={
64
+ "Bug Reports": "https://github.com/pbauermeister/dfd/issues",
65
+ # "Funding": "https://donate.pypi.org",
66
+ # "Say Thanks!": "http://saythanks.io/to/example",
67
+ "Source": "https://github.com/pbauermeister/dfd",
68
+ },
69
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: data-flow-diagram
3
- Version: 1.12.0
3
+ Version: 1.12.1.post1
4
4
  Summary: Commandline tool to generate data flow diagrams from text
5
5
  Home-page: https://github.com/pbauermeister/dfd
6
6
  Author: Pascal Bauermeister
@@ -1,4 +1,7 @@
1
+ CHANGES.md
2
+ MANIFEST.in
1
3
  README.md
4
+ TODO.md
2
5
  pyproject.toml
3
6
  setup.cfg
4
7
  setup.py