diff options
author | Aki <please@ignore.pl> | 2022-08-30 00:15:26 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2022-08-30 00:20:01 +0200 |
commit | ff0dd2f8c5e9ed5bd63fcc47e09d46a7b2812ff1 (patch) | |
tree | e81dfefa6c2f7bf5d56f50816c58055d5b57f29f | |
parent | 389cbba8e19da1fef16310adcf9e1ca7bfe9dda1 (diff) | |
download | szilagyi-ff0dd2f8c5e9ed5bd63fcc47e09d46a7b2812ff1.zip szilagyi-ff0dd2f8c5e9ed5bd63fcc47e09d46a7b2812ff1.tar.gz szilagyi-ff0dd2f8c5e9ed5bd63fcc47e09d46a7b2812ff1.tar.bz2 |
Wrapped script in a setup.py package
-rw-r--r-- | .gitignore | 2 | ||||
-rwxr-xr-x | setup.py | 8 | ||||
-rw-r--r-- | szilagyi/nomogram.py (renamed from plot.py) | 0 |
3 files changed, 10 insertions, 0 deletions
@@ -1,2 +1,4 @@ __pycache__/ .venv/ +*.egg-info/ +build*/ diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..d488731 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup( + name="szilagyi", + packages=["szilagyi"], +) diff --git a/plot.py b/szilagyi/nomogram.py index eb2665d..eb2665d 100644 --- a/plot.py +++ b/szilagyi/nomogram.py |