Metadata-Version: 2.1
Name: maxp
Version: 0.1.8
Summary: 3ds Max Python library
Home-page: https://github.com/thomascswalker/maxp
Author: thomascswalker
Author-email: thomascswalker@gmail.com
License: MIT
Keywords: template
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# maxp

## Requirements
This package is intended for use with _***3ds Max 2022 and above***_.

## Installation
View package on [PyPi](https://pypi.org/project/maxp/).

1. Open `Command Prompt`
2. Run `cd "C:\Program Files\Autodesk\3ds Max 2023\Python"`
3. Run `pip install maxp`

## Examples

### AutoWindow

```python
from maxp.widgets.autowindow import AutoWindow
class MyWindow(AutoWindow):
    def __init__(self):
        super().__init__('My Window Title', uiFileName='interface.ui')
```


