-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 688 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages
from setuptools import setup
install_requires = ['numpy', 'matplotlib', 'gym', 'pandas', 'numdifftools', 'pymongo', 'dnspython']
#tests_require = ['pytest']
#setup_requires = ["pytest-runner"]
setup(
name='MPCBenchmark',
version='1.0',
description='Implementing MPC Algorithms and a Testing framework',
author='Tristan Schulz, Darya Nikitina',
author_email='',
install_requires=install_requires,
url='https://github.com/MrDiver/RoboticsIPBenchmark',
#license='MIT License',
packages=find_packages(exclude=('tests')),
#setup_requires=setup_requires,
#test_suite='tests',
#tests_require=tests_require
)