machfs/setup.py

23 lines
705 B
Python
Raw Permalink Normal View History

2018-10-08 02:12:45 +00:00
from setuptools import setup
2018-10-07 23:37:59 +00:00
setup(
name='machfs',
2021-04-12 00:08:02 +00:00
version='1.3',
2018-10-07 23:37:59 +00:00
author='Elliot Nunn',
author_email='elliotnunn@me.com',
description='Library for reading and writing Macintosh HFS volumes',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/elliotnunn/machfs',
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Filesystems',
],
packages=['machfs'],
install_requires=['macresources'],
scripts=['bin/MakeHFS', 'bin/DumpHFS'],
2018-10-07 23:37:59 +00:00
)