diff --git a/LICENSE b/LICENSE index 16f18b8..c87f205 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019, Brian Delhaisse (brian.delhaisse@iit.it) +Copyright (c) 2018, Brian Delhaisse (brian.delhaisse@iit.it) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pyrobolearn/__init__.py b/pyrobolearn/__init__.py index c31602e..7c3638b 100644 --- a/pyrobolearn/__init__.py +++ b/pyrobolearn/__init__.py @@ -1,3 +1,4 @@ +name = "pyrobolearn" import sys diff --git a/setup.py b/setup.py index a2c419f..1eaba57 100755 --- a/setup.py +++ b/setup.py @@ -24,18 +24,25 @@ setup( version='0.1.0', description='A Python framework for roboticists and machine learning practitioners', long_description = long_description, + long_description_content_type="text/markdown", author='Brian Delhaisse', author_email='briandelhaisse@gmail.com', maintainer='Brian Delhaisse', - maintainer_email='Brian Delhaisse', + maintainer_email='briandelhaisse@gmail.com', license='(c) Brian Delhaisse', url='https://github.com/robotlearn/pyrobolearn', platforms=['Linux Ubuntu'], - # python_requires='==2.7.*', + # python_requires='==2.7.*', # packages=['', 'worlds', 'robots', 'tools', 'pso', 'envs', 'algos', 'optim', 'tasks', 'tools.vr', 'tools.vr.htc', 'tools.vr.oculus', # 'tools.bci', 'tools.audio', 'tools.camera', 'tools.game_controllers', 'utils', 'utils.data_structures', # 'models', 'robots', 'robots.ros', 'robots.ros.coman', 'robots.ros.walkman', 'filters', # 'metrics', 'rl', 'mechanics', 'objectives', 'experiments', 'exploration'], packages=find_packages(), #find_packages(exclude=('tests',)) - install_requires=reqs + install_requires=reqs, + classifiers=[ + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.5", + "License :: OSI Approved :: MIT License", + "Operating System :: POSIX :: Linux", + ], )