From a19c958bab59fe6dfa9bf780e3b462da4d33dc90 Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Mon, 8 Oct 2018 10:12:45 +0800 Subject: [PATCH] Got setuptools working --- setup.py | 4 ++-- upload.sh | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100755 upload.sh diff --git a/setup.py b/setup.py index 20b498d..abeaa85 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ -from distutils.core import setup +from setuptools import setup setup( name='machfs', - version='0.1dev', + version='0.4dev', author='Elliot Nunn', author_email='elliotnunn@me.com', description='Library for reading and writing Macintosh HFS volumes', diff --git a/upload.sh b/upload.sh new file mode 100755 index 0000000..a918fc5 --- /dev/null +++ b/upload.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +rm -rf dist +python3 setup.py sdist bdist_wheel +twine upload dist/*