Skip to content

Commit

Permalink
adds pyproject.toml and works locally, removes setup.py for the main …
Browse files Browse the repository at this point in the history
…repo; and updates gitignore (#69)
  • Loading branch information
mxochicale committed Jul 26, 2023
1 parent ed69dbe commit 90b6b40
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Default project slug path
**/MyNewProject
**/Python_Template.egg-info/
**/PythonTemplate.egg-info/
**/dist/

# Generated files
Expand Down
27 changes: 27 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "PythonTemplate"
description= "Python Template is a Cookiecutter template for creating a python project"
authors = [
{name="Tom Doel", email="[email protected]"},
{name="Stephen Thompson", email= "[email protected]"},
{name="Miguel Xochicale", email= "[email protected]"}
]
version = "2.0.rc0"
readme = "README.rst"
license={text="BSD-3 license"}
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
]

[project.urls]
homepage = "https://https://github.com/SciKit-Surgery/PythonTemplate"

[tool.setuptools.packages.find]
include=[""]
exclude=["doc", "tests"]
18 changes: 0 additions & 18 deletions setup.py

This file was deleted.

0 comments on commit 90b6b40

Please sign in to comment.