Skip to content

Commit

Permalink
folded requirements into setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidcronos committed Sep 28, 2022
1 parent 501ad97 commit da428ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
3 changes: 0 additions & 3 deletions src/requirements.txt

This file was deleted.

7 changes: 2 additions & 5 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,15 @@

import setuptools

with open("requirements.txt", "r") as fh:
requirements = fh.readlines()


setuptools.setup(
name='pybullet_industrial',
version='0.9',
version='1.0',
author='Jan Baumgärtner, Malte Hansjosten, Dominik Schönhofen',
description='Pybullet_industrial is a process-aware robot simulation framework for pybullet.',
url='https://pybullet-industrial.readthedocs.io/en/latest/',
license='MIT',
install_requires=[req for req in requirements if req[:2] != "# "],
install_requires=['numpy', 'pybullet', 'scipy'],
packages=setuptools.find_packages(),

)

0 comments on commit da428ec

Please sign in to comment.