Includes: API (Express/TypeScript), Astro site, Python workers, document generators, FCC compliance tools, Canada CRTC formation, Ansible infrastructure, and deployment scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
394 B
Python
13 lines
394 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="frappe_adyen",
|
|
version="1.0.0",
|
|
description="Adyen payment gateway integration for Frappe/ERPNext",
|
|
author="Performance West Inc.",
|
|
author_email="support@performancewest.net",
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
install_requires=["frappe", "payments", "requests"],
|
|
)
|