Skip to content

Commit

Permalink
Add install_requires to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pziecina committed May 10, 2020
1 parent 2f16142 commit 8e09783
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
with open('LICENSE') as f:
license = f.read()

with open('requirements.txt') as f:
requirements = [r.strip() for r in f]

setup(
name='carla_real_traffic_scenarios',
version='0.2.1',
Expand All @@ -16,6 +19,7 @@
author_email='TODO',
url='TODO',
license=license,
install_requires=requirements,
packages=find_packages(exclude=('tests', 'docs'))
)

0 comments on commit 8e09783

Please sign in to comment.