python-rsrcfork/setup.py

32 lines
939 B
Python
Raw Normal View History

2016-12-24 16:40:56 +00:00
#!/usr/bin/env python3
import setuptools
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="rsrcfork",
2018-02-01 10:06:22 +00:00
version="1.1.2",
2016-12-24 16:40:56 +00:00
description="A pure Python library for reading old Macintosh resource manager data",
long_description=long_description,
url="https://github.com/dgelessus/python-rsrcfork",
author="dgelessus",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
2016-12-24 16:40:56 +00:00
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
],
keywords="rsrc fork resource manager macintosh mac macos",
2017-07-14 16:01:38 +00:00
python_requires=">=3.6",
2018-02-12 21:48:46 +00:00
packages=["rsrcfork"],
2016-12-24 16:40:56 +00:00
)