-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
65 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
- PyUML version: | ||
- UMLizer version: | ||
- Python version: | ||
- Operating System: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pyuml | ||
name: umlizer | ||
channels: | ||
- nodefaults | ||
- conda-forge | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Api references | ||
|
||
::: pyuml | ||
::: umlizer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
API references | ||
============== | ||
|
||
.. automodule:: pyuml | ||
.. automodule:: umlizer | ||
:members: | ||
|
||
.. automodule:: pyuml.pyuml | ||
.. automodule:: umlizer.umlizer | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
In order to be able to contribute, it is important that you understand | ||
the project layout. | ||
This project uses the _src layout_, which means that the package code is located | ||
at `./src/pyuml`. | ||
at `./src/umlizer`. | ||
|
||
For my information, check the official documentation: | ||
https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/ | ||
|
@@ -25,7 +25,7 @@ You can contribute in many ways: | |
|
||
### Report Bugs | ||
|
||
Report bugs at https://github.com/osl-incubator/pyuml/issues. | ||
Report bugs at https://github.com/osl-incubator/umlizer/issues. | ||
|
||
If you are reporting a bug, please include: | ||
|
||
|
@@ -47,14 +47,14 @@ it. | |
|
||
### Write Documentation | ||
|
||
PyUML could always use more documentation, | ||
whether as part of the official PyUML docs, | ||
UMLizer could always use more documentation, | ||
whether as part of the official UMLizer docs, | ||
in docstrings, or even on the web in blog posts, articles, and such. | ||
|
||
### Submit Feedback | ||
|
||
The best way to send feedback is to file an issue at | ||
https://github.com/osl-incubator/pyuml/issues. | ||
https://github.com/osl-incubator/umlizer/issues. | ||
|
||
If you are proposing a feature: | ||
|
||
|
@@ -66,20 +66,20 @@ If you are proposing a feature: | |
|
||
## Get Started! | ||
|
||
Ready to contribute? Here’s how to set up `pyuml` for local development. | ||
Ready to contribute? Here’s how to set up `umlizer` for local development. | ||
|
||
1. Fork the `pyuml` repo on GitHub. | ||
1. Fork the `umlizer` repo on GitHub. | ||
|
||
2. Clone your fork locally:: | ||
|
||
$ git clone [email protected]:your_name_here/pyuml.git | ||
$ git clone [email protected]:your_name_here/umlizer.git | ||
|
||
3. Install your local copy into a virtualenv. Assuming you have | ||
virtualenvwrapper installed, this is how you set up your fork for | ||
local development:: | ||
|
||
$ mkvirtualenv pyuml | ||
$ cd pyuml/ | ||
$ mkvirtualenv umlizer | ||
$ cd umlizer/ | ||
$ python setup.py develop | ||
|
||
4. Create a branch for local development:: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
![LOGO](/images/logo.png) | ||
|
||
# PyUML | ||
# UMLizer | ||
|
||
PyUML is a tool for creating UML diagrams from python source code. | ||
UMLizer is a tool for creating UML diagrams from python source code. | ||
|
||
- License: BSD 3 Clause | ||
- Documentation: https://osl-incubator.github.io/pyuml | ||
- Documentation: https://osl-incubator.github.io/umlizer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tool.poetry] | ||
name = "pyuml" | ||
name = "umlizer" | ||
version = "0.1.0" | ||
description = "Tool for creating UML from project files" | ||
authors = ["Ivan Ogasawara <[email protected]>"] | ||
|
@@ -10,12 +10,12 @@ exclude = [ | |
".env*", | ||
] | ||
packages = [ | ||
{include = "pyuml", from="src"}, | ||
{include = "umlizer", from="src"}, | ||
] | ||
include = ["src/pyuml/py.typed"] | ||
include = ["src/umlizer/py.typed"] | ||
|
||
[tool.poetry.scripts] | ||
"pyuml" = "pyuml.__main__:app" | ||
"umlizer" = "umlizer.__main__:app" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8.1,<4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""The definition of the action for `python -m` command.""" | ||
from pyuml.cli import app | ||
from umlizer.cli import app | ||
|
||
if __name__ == '__main__': | ||
app() |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"""Main tests for pyuml.""" | ||
"""Main tests for umlizer.""" | ||
|
||
|
||
def test_import() -> None: | ||
"""Test import.""" | ||
import pyuml | ||
import umlizer | ||
|
||
assert pyuml | ||
assert umlizer |