novaphysics 0.2.1__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.
- novaphysics-0.2.1/LICENSE +21 -0
- novaphysics-0.2.1/PKG-INFO +60 -0
- novaphysics-0.2.1/README.md +42 -0
- novaphysics-0.2.1/nova/__init__.py +1191 -0
- novaphysics-0.2.1/nova/_cffi_gen.py +163 -0
- novaphysics-0.2.1/novaphysics.egg-info/PKG-INFO +60 -0
- novaphysics-0.2.1/novaphysics.egg-info/SOURCES.txt +11 -0
- novaphysics-0.2.1/novaphysics.egg-info/dependency_links.txt +1 -0
- novaphysics-0.2.1/novaphysics.egg-info/requires.txt +1 -0
- novaphysics-0.2.1/novaphysics.egg-info/top_level.txt +2 -0
- novaphysics-0.2.1/pyproject.toml +30 -0
- novaphysics-0.2.1/setup.cfg +4 -0
- novaphysics-0.2.1/setup.py +63 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Kadir Aksoy
|
|
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.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: novaphysics
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Nova Physics Engine Python Binding
|
|
5
|
+
Author: Kadir Aksoy
|
|
6
|
+
Project-URL: homepage, https://github.com/kadir014/nova-physics-python
|
|
7
|
+
Project-URL: bugtracker, https://github.com/kadir014/nova-physics-python/issues
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Topic :: Games/Entertainment
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Requires-Dist: cffi>=1.17.0
|
|
17
|
+
Dynamic: license-file
|
|
18
|
+
|
|
19
|
+
# Python binding for [Nova Physics Engine](https://github.com/kadir014/nova-physics)
|
|
20
|
+
<img src="https://img.shields.io/badge/license-MIT-blue.svg">
|
|
21
|
+
<img src="https://img.shields.io/badge/version-0.2.1-yellow">
|
|
22
|
+
|
|
23
|
+
Python bindings using CFFI for the Nova Physics Engine.
|
|
24
|
+
|
|
25
|
+
This binding tries to be as Pythonic as possible while trying to keep the original interface the same. So you should be able to use [C library's documentation](https://nova-physics.readthedocs.io/en/latest/).
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# Requirements
|
|
30
|
+
- [Python](https://www.python.org/downloads/) (3.10+)
|
|
31
|
+
- [Setuptools](https://pypi.org/project/setuptools/)
|
|
32
|
+
- [Build](https://pypi.org/project/build/)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# Installation
|
|
37
|
+
Clone the repo and `cd` into it.
|
|
38
|
+
```shell
|
|
39
|
+
$ git clone https://github.com/kadir014/nova-physics-python.git
|
|
40
|
+
$ cd nova-physics-python
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Install the package locally. This will also download the latest commit from C library's repository.
|
|
44
|
+
```shell
|
|
45
|
+
$ pip install .
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Or if you want to build wheels, follow this.
|
|
49
|
+
```shell
|
|
50
|
+
$ python -m build
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Then install the wheel generated under the `dist` directory.
|
|
54
|
+
```shell
|
|
55
|
+
$ pip install nova-version-yourplatform.whl
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
# License
|
|
60
|
+
[MIT](LICENSE) © Kadir Aksoy
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Python binding for [Nova Physics Engine](https://github.com/kadir014/nova-physics)
|
|
2
|
+
<img src="https://img.shields.io/badge/license-MIT-blue.svg">
|
|
3
|
+
<img src="https://img.shields.io/badge/version-0.2.1-yellow">
|
|
4
|
+
|
|
5
|
+
Python bindings using CFFI for the Nova Physics Engine.
|
|
6
|
+
|
|
7
|
+
This binding tries to be as Pythonic as possible while trying to keep the original interface the same. So you should be able to use [C library's documentation](https://nova-physics.readthedocs.io/en/latest/).
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# Requirements
|
|
12
|
+
- [Python](https://www.python.org/downloads/) (3.10+)
|
|
13
|
+
- [Setuptools](https://pypi.org/project/setuptools/)
|
|
14
|
+
- [Build](https://pypi.org/project/build/)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Installation
|
|
19
|
+
Clone the repo and `cd` into it.
|
|
20
|
+
```shell
|
|
21
|
+
$ git clone https://github.com/kadir014/nova-physics-python.git
|
|
22
|
+
$ cd nova-physics-python
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Install the package locally. This will also download the latest commit from C library's repository.
|
|
26
|
+
```shell
|
|
27
|
+
$ pip install .
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Or if you want to build wheels, follow this.
|
|
31
|
+
```shell
|
|
32
|
+
$ python -m build
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Then install the wheel generated under the `dist` directory.
|
|
36
|
+
```shell
|
|
37
|
+
$ pip install nova-version-yourplatform.whl
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# License
|
|
42
|
+
[MIT](LICENSE) © Kadir Aksoy
|