-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 946 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
import setuptools
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="rezparser",
version="1.0.0",
description="A pure Python library for parsing Macintosh Rez source files",
long_description=long_description,
url="https://github.com/dgelessus/python-rezparser",
author="dgelessus",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"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="rez resource macintosh mac macos",
python_requires=">=3.6",
packages=["rezparser"],
install_requires=["ply"],
)