mirror of
https://github.com/dgelessus/python-rsrcfork.git
synced 2024-11-22 14:32:11 +00:00
Add setup.py
This commit is contained in:
parent
8125744e34
commit
5fc5f26542
29
setup.py
Normal file
29
setup.py
Normal file
@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import setuptools
|
||||
|
||||
with open("README.rst", "r", encoding="utf-8") as f:
|
||||
long_description = f.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="rsrcfork",
|
||||
version="1.0.0",
|
||||
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",
|
||||
"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",
|
||||
py_modules=["rsrcfork"],
|
||||
)
|
Loading…
Reference in New Issue
Block a user