Skip to content

Commit

Permalink
Merge pull request #7 from theGreatHerrLebert/david@rustdf
Browse files Browse the repository at this point in the history
updated project structure
  • Loading branch information
theGreatHerrLebert authored Sep 21, 2023
2 parents a298a0d + 917487d commit 6d8d09a
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 1 deletion.
File renamed without changes.
72 changes: 72 additions & 0 deletions pyims_connector/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/target

# Byte-compiled / optimized / DLL files
__pycache__/
.pytest_cache/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
.venv/
env/
bin/
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/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

.DS_Store

# Sphinx documentation
docs/_build/

# PyCharm
.idea/

# VSCode
.vscode/

# Pyenv
.python-version
2 changes: 1 addition & 1 deletion pyims/Cargo.toml → pyims_connector/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pyims"
name = "pyims_connector"
version = "0.1.0"
edition = "2021"

Expand Down
18 changes: 18 additions & 0 deletions pyims_connector/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"

[project]
name = "pyims_connector"
dependencies = [
"opentims-bruker-bridge>=1.1.0",
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]

[tool.maturin]
features = ["pyo3/extension-module"]
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6d8d09a

Please sign in to comment.