-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name="IRL-Task-Sequencing",
version="0.0.1",
packages=find_packages(exclude=[]),
include_package_data = True,
license='MIT',
description = 'Generates task sequencing policies for robotic execution of processing parts in manufacturing applications',
author = 'Omey Manyar',
author_email = '[email protected]',
long_description_content_type = 'text/markdown',
url = 'https://github.com/rros/IRL-Task-Sequencing',
keywords = [
'robotics',
'machine learning',
'imitation learning',
'reward functions',
'task sequencing'
],
install_requires=[
'numpy',
'scipy',
'pandas',
'seaborn'
],
classifiers=[
'Development Status :: 1 - Beta',
'Intended Audience :: Researchers',
'Topic :: Scientific/Engineering :: Robotics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)