Added PDM integration
This commit is contained in:
parent
71d224d5b9
commit
40d6907dbb
6
.gitignore
vendored
6
.gitignore
vendored
@ -9,3 +9,9 @@ activate
|
||||
**/__pycache__
|
||||
**/build
|
||||
**/build/**
|
||||
pdm.lock
|
||||
.pdm-python
|
||||
rigol_dg2052_python_library/
|
||||
rigol_dg2052_python_library/**
|
||||
rigol_dg2052_python_library.egg-info/
|
||||
rigol_dg2052_python_library.egg-info/**
|
||||
|
@ -1,24 +1,31 @@
|
||||
[build-system]
|
||||
requires = ["setuptools"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "fn_gen"
|
||||
name = "rigol-dg2052-python-library"
|
||||
readme = "README.md"
|
||||
description = "A library for usage with SCPI compliant function generators (for now the DG2000 series from rigol)"
|
||||
requires-python = ">=3.11"
|
||||
requires-python = "==3.11.*"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"easy-scpi==0.1.4",
|
||||
"ifaddr==0.2.0",
|
||||
"pip==23.2.1",
|
||||
"psutil==5.9.7",
|
||||
"PyVISA==1.14.1",
|
||||
"PyVISA-py==0.7.1",
|
||||
"setuptools==65.5.0",
|
||||
"typing_extensions==4.9.0",
|
||||
"zeroconf==0.131.0"
|
||||
"easy-scpi==0.1.4",
|
||||
"ifaddr==0.2.0",
|
||||
"pip==23.2.1",
|
||||
"psutil==5.9.7",
|
||||
"PyVISA==1.14.1",
|
||||
"PyVISA-py==0.7.1",
|
||||
"setuptools==65.5.0",
|
||||
"typing_extensions==4.9.0",
|
||||
"zeroconf==0.131.0",
|
||||
"typing-extensions==4.9.0",
|
||||
]
|
||||
authors = [
|
||||
{name = "Ali Nwegy", email = "ali.el-nwegy@tuhh.de"},
|
||||
]
|
||||
license = {text = "MIT"}
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["fn_gen"]
|
||||
packages = [
|
||||
"fn_gen",
|
||||
"rigol_dg2052_python_library",
|
||||
]
|
||||
|
||||
[tool.pdm]
|
||||
distribution = true
|
||||
|
Loading…
Reference in New Issue
Block a user