add lots of boilerplate python packaging code
This commit is contained in:
42
pyproject.toml
Normal file
42
pyproject.toml
Normal file
@ -0,0 +1,42 @@
|
||||
[build-system]
|
||||
requires = ["setuptools", "setuptools-scm"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "charon"
|
||||
authors = [{ name = "Brendan Haines", email = "brendan.haines@gmail.com" }]
|
||||
description = "RF Network Analyzer based on the Pluto SDR"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3"
|
||||
# keywords = ["one", "two"]
|
||||
license = { text = "MIT License" }
|
||||
classifiers = ["Programming Language :: Python :: 3"]
|
||||
dependencies = ["numpy", "scipy", "click"]
|
||||
dynamic = ["version"]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://git.brendanhaines.com/brendanhaines/charon"
|
||||
|
||||
[project.scripts]
|
||||
# charon = "charon.charon:main"
|
||||
|
||||
[tool.setuptools_scm]
|
||||
version_file = "charon/_version.py"
|
||||
|
||||
[tool.black]
|
||||
line-length = 120
|
||||
exclude = '''
|
||||
/(
|
||||
\.eggs
|
||||
| \.git
|
||||
| \.hg
|
||||
| \.mypy_cache
|
||||
| \.tox
|
||||
| \.venv
|
||||
| \.vscode
|
||||
| _build
|
||||
| buck-out
|
||||
| build
|
||||
| dist
|
||||
)/
|
||||
'''
|
Reference in New Issue
Block a user