Skip to content

Commit

Permalink
New piec time
Browse files Browse the repository at this point in the history
  • Loading branch information
ElPsyKurisu committed Oct 14, 2024
0 parents commit b8738ec
Show file tree
Hide file tree
Showing 37 changed files with 1,779 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
18 changes: 18 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

sphinx:
configuration: docs/source/conf.py
fail_on_warning: false

formats: all

# Optionally set the version of Python and requirements required to build your docs
python:
version: "3.8"
install:
- requirements: docreqs.txt
12 changes: 12 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
cff-version: 1.2.0
message: Please cite this software using these metadata.
authors:
- family-names: Fratian
given-names: Geo, George
email: [email protected]
affiliation: Brown University
orcid: 'https://orcid.org/0009-0008-2687-671X'
title: piec
type: software
version: 0.0.01
url: https://github.com/ElPsyKurisu/PIEC
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Geo Fratian

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# PIEC
Python Integrated Experimental Control
The goal of this repository is to provide a streamlined control scheme for lab experiments and allow for rapid development
of new experimental procedures starting from a ferroelectric standpoint.
Requires KEYSIGHT I/O Libraries, find them here: www.keysight.com/find/iosuite
6 changes: 6 additions & 0 deletions docreqs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pandas>=1.3.2
numpy>=1.19.2
matplotlib>=3.3.4
scipy>=1.6.2
pyvisa>=1.11.3
IPython>=7.22.0
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
30 changes: 30 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[metadata]
name = piec
version = attr: piec._version.__version__
author = Geo Fratian
author_email = [email protected]
description = A collection of control and analysis code for experiments
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ElPsyKurisu/piec
project_urls =
Bug Tracker = https://github.com/ElPsyKurisu/piec/issues
repository = https://github.com/ElPsyKurisu/piec
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
= src
packages = find:
include_package_data = True
install_requires = file: docreqs.txt
python_requires = >=3.6

[options.packages.find]
where = src

[options.package_data]
* = *_notebook.ipynb
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from setuptools import setup

setup()
3 changes: 3 additions & 0 deletions src/piec/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from ._version import __version__

__all__ = ('__version__')
Binary file added src/piec/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file added src/piec/__pycache__/_version.cpython-312.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions src/piec/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.0.01-beta3'
2 changes: 2 additions & 0 deletions src/piec/analysis/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Analysis
Code to analyze, feel free to put a summary here no
2 changes: 2 additions & 0 deletions src/piec/drivers/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Drivers
Instrument drivers centered around an Instrument class structured with all insturments inheriting from a generic instrument class and then subdividing into sub-classes based on instrument charectoristics
2 changes: 2 additions & 0 deletions src/piec/drivers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .instrument import *
from pymeasure.instruments import*
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit b8738ec

Please sign in to comment.