Skip to content

Commit

Permalink
Merge pull request #26 from pfmoore/use_flit
Browse files Browse the repository at this point in the history
Switch from setuptools to flit
  • Loading branch information
pfmoore committed Jun 28, 2023
2 parents 6677e7d + 7bfee0e commit 489357c
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 62 deletions.
39 changes: 37 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
requires = ["flit_core >=3.3"]
build-backend = "flit_core.buildapi"

[project]
name = "editables"
version = "0.3"
description = "Editable installations"
readme = "README.md"
requires-python = ">=3.7"
authors = [{name = "Paul Moore", email = "p.f.moore@gmail.com"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = []

[project.urls]
Documentation = "https://editables.readthedocs.io"
Source = "https://github.com/pfmoore/editables"
Tracker = "https://github.com/pfmoore/editables/issues"

[tool.flit.sdist]
include = ["LICENSE*", "tests/", "docs/"]
exclude = ["docs/build", "tests/__pycache__"]
57 changes: 0 additions & 57 deletions setup.cfg

This file was deleted.

3 changes: 0 additions & 3 deletions setup.py

This file was deleted.

0 comments on commit 489357c

Please sign in to comment.