Metadata-Version: 2.4
Name: gpkit-core
Version: 0.3.4
Summary: Package for defining and manipulating geometric programming models.
Project-URL: Homepage, https://www.github.com/beautifulmachines/gpkit-core
Author-email: Warren Hoburg <whoburg@alum.mit.edu>
License: The MIT License (MIT)
        
        Copyright (c) 2026 Warren Hoburg
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: adce>=1.3.2
Requires-Dist: cvxopt>=1.3.3
Requires-Dist: matplotlib>=3.3.0
Requires-Dist: numpy>=1.16.4
Requires-Dist: pint>=0.8.1
Requires-Dist: plotly>=5.3.0
Requires-Dist: scipy>=1.7.0
Description-Content-Type: text/markdown

# GPkit

GPkit is a Python package for defining and solving geometric programming (GP) models.
It provides symbolic variables with physical units, composable constraint sets, and
interfaces to convex solvers — delivering reliable, globally-optimal solutions to
engineering design problems.

[![Test Status](https://github.com/beautifulmachines/gpkit-core/actions/workflows/tests.yml/badge.svg)](https://github.com/beautifulmachines/gpkit-core/actions/workflows/tests.yml)
[![Lint Status](https://github.com/beautifulmachines/gpkit-core/actions/workflows/lint.yml/badge.svg)](https://github.com/beautifulmachines/gpkit-core/actions/workflows/lint.yml)

## Installation

```bash
pip install gpkit-core
```

Supported solvers: [MOSEK](https://www.mosek.com) and [cvxopt](https://cvxopt.org)
(cvxopt is open source and installed by default).

## Documentation

See [docs/](docs/) for full documentation including getting started, modeling
conventions, and examples.

## Contributing

We welcome contributions. See [CONTRIBUTING.md](CONTRIBUTING.md) for setup and
workflow details.

## Acknowledgments

Originally developed with Ned Burnell, whose extensive contributions were
foundational to the early design.
