-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (35 loc) · 934 Bytes
/
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
35
36
37
38
39
40
41
import os
import sys
from setuptools import find_packages, setup
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "socnavgym"))
NAME = "socnavgym"
DESCRIPTION = "An environment for Social Navigation"
REPOSITORY = "https://github.com/gnns4hri/SocNavGym"
EMAIL = "[email protected]"
AUTHOR = "Sushant Swamy"
VERSION = "0.1.0"
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
REQUIRED = [
"gymnasium >= 0.29.1",
"opencv-python",
"numpy",
"matplotlib",
"shapely",
"Cython"
]
EXCLUDES=["environment_configs", "tests"]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=REPOSITORY,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages(exclude=EXCLUDES),
install_requires=REQUIRED,
license="GPL-3",
include_package_data=True
)