forked from lpcvai/2021-LPCVC-Referee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 668 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name='cam2_referee',
version="0.0.3",
install_requires=requirements,
author="Matthew Wen",
author_email="mattwen2018@gmail.com",
description="Test Solution for CAM2 Drone Team",
packages=setuptools.find_packages(),
scripts=["bin/test-solution", "bin/lpcvc"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
)