-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (20 loc) · 712 Bytes
/
setup.py
File metadata and controls
27 lines (20 loc) · 712 Bytes
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
"""DriveSceneGen."""
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
def read_lines(path):
"""Read lines of `path`."""
with open(path) as f:
return f.read().splitlines()
BASE_DIR = Path(__file__).parent
setup(
name="DriveSceneGen",
long_description=open(BASE_DIR / "README.md").read(),
install_requires=read_lines(BASE_DIR / "requirements.txt"),
extras_require={"dev": read_lines(BASE_DIR / "requirements_dev.txt")},
packages=find_packages(exclude=["docs"]),
version="0.1.0",
description="DriveSceneGen: Generating Diverse and Realistic Driving Scenarios from Scratch",
author="Shuo",
license="proprietary",
)