pytact 0.0.1a0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pytact-0.0.1a0/LICENSE +21 -0
- pytact-0.0.1a0/PKG-INFO +49 -0
- pytact-0.0.1a0/README.md +27 -0
- pytact-0.0.1a0/pyproject.toml +39 -0
- pytact-0.0.1a0/setup.cfg +4 -0
- pytact-0.0.1a0/src/pytact/__init__.py +24 -0
- pytact-0.0.1a0/src/pytact.egg-info/PKG-INFO +49 -0
- pytact-0.0.1a0/src/pytact.egg-info/SOURCES.txt +8 -0
- pytact-0.0.1a0/src/pytact.egg-info/dependency_links.txt +1 -0
- pytact-0.0.1a0/src/pytact.egg-info/top_level.txt +1 -0
pytact-0.0.1a0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 pytact maintainers
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
pytact-0.0.1a0/PKG-INFO
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pytact
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: Reserved package name for tact, a high contact/tactile fidelity dynamics simulator
|
|
5
|
+
Author: pytact maintainers
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Repository, https://github.com/tzscheng/fg
|
|
8
|
+
Project-URL: Issues, https://github.com/tzscheng/fg/issues
|
|
9
|
+
Keywords: robotics,simulation,dynamics,contact,tactile
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Requires-Python: >=3.12
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# pytact
|
|
24
|
+
|
|
25
|
+
`pytact` is the reserved Python package name for **tact: a high contact/tactile fidelity dynamics simulator**.
|
|
26
|
+
|
|
27
|
+
This pre-alpha release exists to establish the package name while the simulator is being prepared for public Python packaging. It is intentionally small, but not a throwaway placeholder: the package imports, exposes version metadata, and points to the intended project identity.
|
|
28
|
+
|
|
29
|
+
## Current status
|
|
30
|
+
|
|
31
|
+
- Package name: `pytact`
|
|
32
|
+
- Project identity: `tact`
|
|
33
|
+
- Scope: robotics dynamics simulation with contact-rich and tactile-focused interactions
|
|
34
|
+
- Release status: pre-alpha name reservation
|
|
35
|
+
|
|
36
|
+
The full simulator API is not published in this release. Future releases are expected to provide the actual Python API and native runtime assets under this package name.
|
|
37
|
+
|
|
38
|
+
## Why this package exists
|
|
39
|
+
|
|
40
|
+
The project previously used the working name `tact`. The PyPI name `pytact` is being reserved as the intended public package name before the simulator is repackaged and released.
|
|
41
|
+
|
|
42
|
+
## Import check
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
import pytact
|
|
46
|
+
|
|
47
|
+
print(pytact.__version__)
|
|
48
|
+
print(pytact.PROJECT_STATEMENT)
|
|
49
|
+
```
|
pytact-0.0.1a0/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# pytact
|
|
2
|
+
|
|
3
|
+
`pytact` is the reserved Python package name for **tact: a high contact/tactile fidelity dynamics simulator**.
|
|
4
|
+
|
|
5
|
+
This pre-alpha release exists to establish the package name while the simulator is being prepared for public Python packaging. It is intentionally small, but not a throwaway placeholder: the package imports, exposes version metadata, and points to the intended project identity.
|
|
6
|
+
|
|
7
|
+
## Current status
|
|
8
|
+
|
|
9
|
+
- Package name: `pytact`
|
|
10
|
+
- Project identity: `tact`
|
|
11
|
+
- Scope: robotics dynamics simulation with contact-rich and tactile-focused interactions
|
|
12
|
+
- Release status: pre-alpha name reservation
|
|
13
|
+
|
|
14
|
+
The full simulator API is not published in this release. Future releases are expected to provide the actual Python API and native runtime assets under this package name.
|
|
15
|
+
|
|
16
|
+
## Why this package exists
|
|
17
|
+
|
|
18
|
+
The project previously used the working name `tact`. The PyPI name `pytact` is being reserved as the intended public package name before the simulator is repackaged and released.
|
|
19
|
+
|
|
20
|
+
## Import check
|
|
21
|
+
|
|
22
|
+
```python
|
|
23
|
+
import pytact
|
|
24
|
+
|
|
25
|
+
print(pytact.__version__)
|
|
26
|
+
print(pytact.PROJECT_STATEMENT)
|
|
27
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=70.1", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pytact"
|
|
7
|
+
version = "0.0.1a0"
|
|
8
|
+
description = "Reserved package name for tact, a high contact/tactile fidelity dynamics simulator"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "pytact maintainers" }
|
|
14
|
+
]
|
|
15
|
+
keywords = [
|
|
16
|
+
"robotics",
|
|
17
|
+
"simulation",
|
|
18
|
+
"dynamics",
|
|
19
|
+
"contact",
|
|
20
|
+
"tactile",
|
|
21
|
+
]
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
24
|
+
"Intended Audience :: Science/Research",
|
|
25
|
+
"Intended Audience :: Developers",
|
|
26
|
+
"Programming Language :: Python :: 3",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Topic :: Scientific/Engineering",
|
|
29
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
30
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
31
|
+
]
|
|
32
|
+
dependencies = []
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
Repository = "https://github.com/tzscheng/fg"
|
|
36
|
+
Issues = "https://github.com/tzscheng/fg/issues"
|
|
37
|
+
|
|
38
|
+
[tool.setuptools.packages.find]
|
|
39
|
+
where = ["src"]
|
pytact-0.0.1a0/setup.cfg
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Pre-alpha package marker for pytact.
|
|
2
|
+
|
|
3
|
+
This release reserves the public package name for tact while the simulator is
|
|
4
|
+
prepared for distribution under the pytact name.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.1a0"
|
|
10
|
+
|
|
11
|
+
PROJECT_NAME = "tact"
|
|
12
|
+
PROJECT_STATEMENT = "tact: a high contact/tactile fidelity dynamics simulator"
|
|
13
|
+
PACKAGE_STATUS = "pre-alpha name reservation"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def about() -> dict[str, str]:
|
|
17
|
+
"""Return public project metadata for this reservation release."""
|
|
18
|
+
return {
|
|
19
|
+
"package": "pytact",
|
|
20
|
+
"version": __version__,
|
|
21
|
+
"project": PROJECT_NAME,
|
|
22
|
+
"statement": PROJECT_STATEMENT,
|
|
23
|
+
"status": PACKAGE_STATUS,
|
|
24
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pytact
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: Reserved package name for tact, a high contact/tactile fidelity dynamics simulator
|
|
5
|
+
Author: pytact maintainers
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Repository, https://github.com/tzscheng/fg
|
|
8
|
+
Project-URL: Issues, https://github.com/tzscheng/fg/issues
|
|
9
|
+
Keywords: robotics,simulation,dynamics,contact,tactile
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Requires-Python: >=3.12
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# pytact
|
|
24
|
+
|
|
25
|
+
`pytact` is the reserved Python package name for **tact: a high contact/tactile fidelity dynamics simulator**.
|
|
26
|
+
|
|
27
|
+
This pre-alpha release exists to establish the package name while the simulator is being prepared for public Python packaging. It is intentionally small, but not a throwaway placeholder: the package imports, exposes version metadata, and points to the intended project identity.
|
|
28
|
+
|
|
29
|
+
## Current status
|
|
30
|
+
|
|
31
|
+
- Package name: `pytact`
|
|
32
|
+
- Project identity: `tact`
|
|
33
|
+
- Scope: robotics dynamics simulation with contact-rich and tactile-focused interactions
|
|
34
|
+
- Release status: pre-alpha name reservation
|
|
35
|
+
|
|
36
|
+
The full simulator API is not published in this release. Future releases are expected to provide the actual Python API and native runtime assets under this package name.
|
|
37
|
+
|
|
38
|
+
## Why this package exists
|
|
39
|
+
|
|
40
|
+
The project previously used the working name `tact`. The PyPI name `pytact` is being reserved as the intended public package name before the simulator is repackaged and released.
|
|
41
|
+
|
|
42
|
+
## Import check
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
import pytact
|
|
46
|
+
|
|
47
|
+
print(pytact.__version__)
|
|
48
|
+
print(pytact.PROJECT_STATEMENT)
|
|
49
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pytact
|