Skip to content

Commit

Permalink
pyp: use flit
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Jan 12, 2023
1 parent e571fc9 commit 4003532
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 28 deletions.
34 changes: 34 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
[project]
name = "pypyp"
version = "1.1.0"
authors = [{name = "Shantanu Jain"}, {email = "[email protected]"}]
description = "Easily run Python at the shell! Magical, but never mysterious."
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities",
]
requires-python = ">=3.6"
dependencies = ["astunparse; python_version<'3.9'"]

[project.scripts]
pyp = "pyp:main"

[project.urls]
homepage = "https://github.com/hauntsaninja/pyp"
repository = "https://github.com/hauntsaninja/pyp"
changelog = "https://github.com/hauntsaninja/pyp/blob/master/CHANGELOG.md"

[tool.flit.module]
name = "pyp"

[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"

[tool.black]
line-length = 100
skip-magic-trailing-comma = true
28 changes: 0 additions & 28 deletions setup.py

This file was deleted.

0 comments on commit 4003532

Please sign in to comment.