Skip to content

Commit

Permalink
Make a python package
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaireLC committed Mar 5, 2024
1 parent e0c731a commit d423b95
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "aograsp"
version = "0.0.1"
authors = [
{ name="Claire Chen" },
{ name="Carlota Pares" },
]
description = "AO-Grasp"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[tool.setuptools.packages.find]
include = ["ao-grasp*"]
exclude = ["viz_data*", "test_data*"]

0 comments on commit d423b95

Please sign in to comment.