-
Notifications
You must be signed in to change notification settings - Fork 6
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
xinyuli1204
committed
Dec 7, 2023
1 parent
33f2ddc
commit 6e0b038
Showing
5 changed files
with
39 additions
and
32 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,5 @@ | ||
|
||
__version__ = "0.3.5" | ||
from .Port import Port | ||
from .Param import Param | ||
from .Node import Node | ||
|
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[project] | ||
name = 'ionpy' | ||
dynamic = ["version"] | ||
authors = [ | ||
{ name="Takuro Iizuka", email="[email protected]" } | ||
] | ||
description = "Python Binding for ion-kit" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Programming Language :: Python" | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://sensing-dev.github.io/doc/" | ||
Repository = "https://github.com/fixstars/ion-kit" | ||
Changelog = "https://sensing-dev.github.io/doc/blog/index.html" | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-ra -q" | ||
testpaths = [ | ||
"tests", | ||
] | ||
|
||
[tool.setuptools] | ||
packages = ["ionpy"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "ionpy.__version__"} | ||
|
This file was deleted.
Oops, something went wrong.
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