mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9295a3b690
Move Python code into an xpidl subdirectory, and include a setup.py to allow inclusion from pip install or requirements files. Change build directory variables appropriately.
16 lines
432 B
Python
16 lines
432 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='xpidl',
|
|
version='1.0',
|
|
description='Parser and header generator for xpidl files.',
|
|
author='Mozilla Foundation',
|
|
license='MPL 2.0',
|
|
packages=find_packages(),
|
|
install_requires=['ply>=3.6,<4.0'],
|
|
url='https://github.com/pelmers/xpidl',
|
|
entry_points={'console_scripts': ['header.py = xpidl.header:main']},
|
|
keywords=['xpidl', 'parser']
|
|
)
|