Converted to python-package

This commit is contained in:
Dominik Moritz Roth 2022-06-19 16:37:53 +02:00
parent 6ebd95e74f
commit 39c5c33348
9 changed files with 12 additions and 5 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
__pychache__ __pychache__
*.pyc *.pyc
*.pyo *.pyo
*.egg-info

View File

@ -1 +0,0 @@
# Blub

1
columbus/__init__.py Normal file
View File

@ -0,0 +1 @@
# emtpy

View File

@ -4,8 +4,7 @@ import numpy as np
import pygame import pygame
import random as random_dont_use import random as random_dont_use
import math import math
import entities from columbus import entities, observables
import observables
class ColumbusEnv(gym.Env): class ColumbusEnv(gym.Env):

View File

@ -1,5 +1,12 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup( setup(
name='Columbus', name='columbus',
packages=find_packages(), version='1.0.0',
# url='https://github.com/mypackage.git',
# author='Author Name',
# author_email='author@gmail.com',
# description='Description of my package',
packages=['.'],
# install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
) )