forked from motional/nuplan-devkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 958 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
import os
import setuptools
# Change directory to allow installation from anywhere
script_folder = os.path.dirname(os.path.realpath(__file__))
os.chdir(script_folder)
# Installs
setuptools.setup(
name='nuplan-devkit',
version='1.2.2',
author='The nuPlan team @ Motional',
author_email='[email protected]',
description='The official devkit of the nuPlan dataset (www.nuPlan.org).',
url='https://github.com/motional/nuplan-devkit',
python_requires='>=3.9',
packages=setuptools.find_packages(script_folder, exclude=['*test', 'bazel-nuplan_devkit*', 'bazel-nuplan-devkit*']),
package_data={'': ['*.json']},
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'License :: Free for non-commercial use',
],
entry_points={"console_scripts": ["nuplan_cli = nuplan.cli.nuplan_cli:main"]},
license='apache-2.0',
)