2018-10-08 02:12:45 +00:00
|
|
|
from setuptools import setup
|
2018-10-07 23:37:59 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='machfs',
|
2022-12-27 04:27:22 +00:00
|
|
|
version='1.4',
|
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'],
|
2018-10-23 09:33:20 +00:00
|
|
|
install_requires=['macresources'],
|
2018-11-03 12:29:47 +00:00
|
|
|
scripts=['bin/MakeHFS', 'bin/DumpHFS'],
|
2018-10-07 23:37:59 +00:00
|
|
|
)
|