-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (24 loc) · 892 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pyNeuralEMPC
setup(
name='pyNeuralEMPC',
version=pyNeuralEMPC.__version__,
packages=find_packages(),
author="François 'Enderdead' Gauthier-Clerc",
author_email="[email protected]",
description="A nonlinear MPC library that allows you using a neural network as a model.",
long_description=open('README.md').read(),
install_requires=["numpy", "matplotlib", "tensorflow", "cyipopt", "jax"],
include_package_data=True,
url='https://github.com/Enderdead/pyNeuralEMPC',
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Neural NMPC",
],
license="MIT",
)