-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from runSequences import Sequence_runner | ||
from Sequence_parsing import Sequence_parser | ||
from Sequence_editor import Sequence_builder | ||
from Dummy import Dummy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
name = 'measureSequences' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
numpy | ||
PyQt5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="measureSequences-bklebel", | ||
version="0.0.1", | ||
author="Benjamin Klebel", | ||
author_email="klebel.b@hotmail.com", | ||
description="parse and run QD PPMS sequence files", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/bklebel/measureSequences", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3.0", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Science/Research ", | ||
"Topic :: Scientific/Engineering ", | ||
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator ", | ||
"Topic :: Scientific/Engineering :: Physics ", | ||
], | ||
) |