Skip to content

Commit

Permalink
Restructured project to use maturin to build Python pacakage with Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
Ce11an committed Mar 10, 2024
1 parent 7de2c20 commit e2f8da5
Show file tree
Hide file tree
Showing 42 changed files with 4,281 additions and 3,858 deletions.
121 changes: 57 additions & 64 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,84 +1,77 @@
# -----------------------------------
# OS X
# -----------------------------------
/target

# Directory files
.DS_Store
.AppleDouble
.LSOverride

# Thumbnail files
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Byte-compiled / optimized / DLL files
__pycache__/
.pytest_cache/
*.py[cod]

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# C extensions
*.so

# Environments
.env
.venv
# Distribution / packaging
.Python
.venv/
env/
venv/
ENV/
env.bak/
venv.bak/
bin/
lib64
pyvenv.cfg
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
include/
man/
venv/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt
pip-selfcheck.json

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# -----------------------------------
# Files
# -----------------------------------
# Translations
*.mo

*.db
*.pyc
.vscode/
__pycache__/
dist/
build/
# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

.DS_Store

# Sphinx documentation
docs/_build/

# -----------------------------------
# IDE
# -----------------------------------
# PyCharm
.idea/
# -----------------------------------
# Rust
# -----------------------------------
/target/
Cargo.lock
# -----------------------------------
# Packaging
# -----------------------------------
*.egg-info/
*.egg
.eggs/
*.so
/build/
# -----------------------------------
# server tests
# -----------------------------------

# VSCode
.vscode/

# Pyenv
.build/

# Server tests
integration_tests/flask/app/surreal.py/
integration_tests/package-lock.json
integration_tests/node_modules/
Loading

0 comments on commit e2f8da5

Please sign in to comment.