Skip to content

Commit

Permalink
chore(setup): Updates author and maintainer in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cornerfarmer authored Jul 27, 2023
1 parent 41f958f commit 73ba73b
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,19 @@
exec(fp.read(), version)

with open(os.path.join(here, "README.md")) as fp:
long_description = fp.read()
long_description = fp.read()

setup(name='blenderproc',
version=version['__version__'],
url='https://github.com/DLR-RM/BlenderProc',
author='German Aerospace Center (DLR) - Institute of Robotics and Mechatronics (RM)',
packages=find_packages(exclude=['docs', 'examples', 'external', 'images', 'resources', 'scripts', 'tests']),
include_package_data=True,
entry_points={
'console_scripts': ['blenderproc=blenderproc.command_line:cli'],
},
install_requires=["setuptools", "pyyaml", "requests", "matplotlib", "numpy", "Pillow", "h5py", "progressbar"],
long_description=long_description,
long_description_content_type='text/markdown'
)
version=version['__version__'],
url='https://github.com/DLR-RM/BlenderProc',
author='Maximilian Denninger, Dominik Winkelbauer, Martin Sundermeyer',
maintainer='Dominik Winkelbauer',
packages=find_packages(exclude=['docs', 'examples', 'external', 'images', 'resources', 'scripts', 'tests']),
include_package_data=True,
entry_points={
'console_scripts': ['blenderproc=blenderproc.command_line:cli'],
},
install_requires=["setuptools", "pyyaml", "requests", "matplotlib", "numpy", "Pillow", "h5py", "progressbar"],
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit 73ba73b

Please sign in to comment.