Skip to content

Commit

Permalink
towards packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
bklebel committed Jul 3, 2019
1 parent b35e37e commit 4044a01
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Sequences/__init__.py
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
1 change: 1 addition & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
name = 'measureSequences'
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
numpy
PyQt5
25 changes: 25 additions & 0 deletions setup.py
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 ",
],
)

0 comments on commit 4044a01

Please sign in to comment.