Skip to content
Snippets Groups Projects
Commit 30b9b888 authored by Vicki Pfau's avatar Vicki Pfau
Browse files

Fix package names

parent 6351595d
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ find_package(PythonInterp REQUIRED)
file(READ "${CMAKE_SOURCE_DIR}/VERSION" PROJECT_VERSION)
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "$CMAKE_SOURCE_DIR}/VERSION")
project(Retro VERSION ${PROJECT_VERSION})
project("Gym Retro" VERSION ${PROJECT_VERSION})
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
......
......@@ -46,7 +46,7 @@ class CMakeBuild(build_ext):
setup(
name='retro',
name='gym-retro',
version=open(VERSION_PATH, 'r').read(),
license='MIT',
install_requires=['gym>=0.9.4'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment