-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.12 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.12 KB
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
35
36
37
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='yarok',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(
# exclude=["yarok/comm", "yarok/comm.*"]
),
# I'm not sure about the real impact of this flag,
# but the file extensions to be included are defined in MANIFEST.in
include_package_data=True,
version='0.0.41',
description='YAROK - Yet another robot framework',
author='danfergo',
entry_points={
'console_scripts': [
'yarok = yarok.__main__:main'
],
},
author_email='danfergo@gmail.com',
url='https://github.com/danfergo/yarok',
keywords=['yarok', 'robot', 'framework', 'mujoco'],
classifiers=[],
install_requires=[
'mujoco',
'mujoco-python-viewer',
'pyyaml' # mujoco viewer requires pyyaml .. just in case anyway.
]
)