-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
with open('requirements.txt') as f:
lines = f.read().split('\n')
requirements = []
for line in lines:
if line.startswith('git+'):
link, package = line.split('#egg=')
requirements.append(f'{package} @ {link}#{package}')
else:
requirements.append(line)
setup(
name="racecar_gym",
version="0.0.1",
packages=find_packages(),
install_requires=requirements,
author='Axel Brunnbauer',
author_email='axel.brunnbauer@gmx.at',
description='An RL environment for a miniature racecar using the pybullet physics engine.',
url='https://github.com/axelbr/racecar_gym',
)