Skip to content

Commit a286588

Browse files
committed
Update .gitignore and pyproject.toml for improved package management and build configuration
1 parent cfdcfa2 commit a286588

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ __pycache__/
22
*notes*
33

44
*egg-info/
5-
*-venv/
5+
*-venv/
6+
7+
# Builds
8+
dist/

pyproject.toml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
2+
# Specify the build dependencies and backend
3+
requires = ["setuptools>=42", "wheel"]
34
build-backend = "setuptools.build_meta"
45

56
[project]
@@ -8,9 +9,24 @@ version = "0.2.0"
89
description = "Agnostic Robotic Controller Project"
910
readme = "README.md"
1011
requires-python = ">=3.6"
11-
dependencies = ["numpy", "scipy"]
12+
dependencies = [
13+
"numpy",
14+
"scipy"
15+
]
1216
license = { file = "LICENSE" }
1317

18+
keywords = ["robotics", "socket", "control", "automation"]
19+
classifiers = [
20+
"Programming Language :: Python :: 3",
21+
"License :: OSI Approved :: MIT License",
22+
"Operating System :: OS Independent"
23+
]
24+
1425
[tool.setuptools.packages.find]
15-
where = ["."]
16-
include = ["agnostic_controller*"] # This ensures all robot submodules are included
26+
where = ["."]
27+
include = ["agnostic_controller*"]
28+
exclude = ["tests*"]
29+
30+
[project.urls]
31+
Homepage = "https://github.com/MGross21/agnostic-controller"
32+
Tracker = "https://github.com/MGross21/agnostic-controller/issues"

0 commit comments

Comments
 (0)