correct/update setup.py

This commit is contained in:
Brian Delhaisse
2019-04-16 15:08:42 +02:00
parent 92bea93fde
commit f3a49a9f21
3 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -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
+1
View File
@@ -1,3 +1,4 @@
name = "pyrobolearn"
import sys
+10 -3
View File
@@ -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",
],
)