-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (41 loc) · 1.02 KB
/
setup.py
File metadata and controls
executable file
·43 lines (41 loc) · 1.02 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
38
39
40
41
42
43
#!/usr/bin/env python3
"""
Setup configuration for FLL-Sim package.
"""
from setuptools import find_packages, setup
setup(
name="fll-sim",
version="1.0.0",
description="First Lego League Robot and Map Simulator",
author="FLL-Sim Team",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"pygame>=2.5.0",
"numpy>=1.21.0",
"matplotlib>=3.5.0",
"pymunk>=6.2.0",
"Pillow>=9.0.0",
"pyyaml>=6.0",
"click>=8.0.0",
"dataclasses-json>=0.5.7",
"PyQt6>=6.5.0"
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"mypy>=1.0.0",
"pre-commit>=2.20.0",
"coverage"
]
},
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
)