Got setuptools working

This commit is contained in:
Elliot Nunn 2018-10-08 10:12:45 +08:00
parent 5dff862548
commit a19c958bab
2 changed files with 7 additions and 2 deletions

View File

@ -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',

5
upload.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
rm -rf dist
python3 setup.py sdist bdist_wheel
twine upload dist/*