Skip to content

Commit

Permalink
Merge pull request #20 from papagiannakis/develop
Browse files Browse the repository at this point in the history
Release v1.0.0
  • Loading branch information
papagiannakis authored Apr 9, 2023
2 parents 7062c50 + e4be87d commit d6d16d5
Show file tree
Hide file tree
Showing 313 changed files with 310,260 additions and 61 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ __pycache__/

# Distribution / packaging
.Python
.DS_Store/
build/
develop-eggs/
dist/
Expand Down Expand Up @@ -127,3 +128,9 @@ dmypy.json

# Pyre type checker
.pyre/


# imgui preferences file
imgui.ini
.DS_Store
data/GeometricShapes
31 changes: 31 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-20.04
tools:
python: "3.8"
# You can also specify other tool versions:
# nodejs: "16"
# rust: "1.55"
# golang: "1.17"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

# If using Sphinx, optionally build your docs in additional formats such as PDF
# formats:
# - pdf

# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt
- method: pip
path: .
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"python.testing.unittestArgs": [
"-v",
"-s",
".",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}
1 change: 1 addition & 0 deletions Elements/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ._version import __version__
8 changes: 8 additions & 0 deletions Elements/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Package versioning solution originally found here:
# http://stackoverflow.com/q/458550

# Store the version here so:
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
# 3) we can import it into your module
__version__ = '1.0.0'
Loading

0 comments on commit d6d16d5

Please sign in to comment.