Skip to content

Commit 4566748

Browse files
committed
Accumulated initial changes
1 parent d9f6384 commit 4566748

File tree

7 files changed

+1325
-3
lines changed

7 files changed

+1325
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ share/python-wheels/
2626
.installed.cfg
2727
*.egg
2828
MANIFEST
29+
poetry.lock
2930

3031
# PyInstaller
3132
# Usually these files are written by a python script from a template

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
[tool.poetry]
22
name = "xdyna"
33
version = "0.0.1"
4-
description = ""
4+
description = "Xsuite dynamics package"
5+
repository = "https://github.com/xsuite/xdyna"
56
authors = ["Frederik F. Van der Veken <[email protected]>"]
67

78
[tool.poetry.dependencies]
89
python = ">=3.8,<3.11" # The upper bound is required by scipy
910
numpy = "^1.22.3"
1011
scipy = "^1.8.0"
1112
pandas = "^1.4.2"
13+
xobjects = "^0.1.12"
14+
xdeps = "^0.0.5"
15+
xpart = "^0.6.1"
16+
xtrack = "^0.11.4"
1217

1318
[tool.poetry.dev-dependencies]
1419
pytest = "^5.2"

version.sh

100644100755
File mode changed.

xdyna/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
from .da import get_da_radial, get_da_evo_radial, get_da_sixdesk, get_da_evo_sixdesk
1+
from .da import DA
2+
from .da_meta import regenerate_da_metadata
3+
from .protectfile import ProtectFile, get_hash
24

35
__version__ = '0.0.1'

xdyna/da.py

Lines changed: 607 additions & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)