new-site/frappe_crypto/setup.py
justin f8cd37ac8c Initial commit — Performance West telecom compliance platform
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>
2026-04-27 06:54:22 -05:00

16 lines
472 B
Python

from setuptools import setup, find_packages
with open("requirements.txt") as f:
install_requires = f.read().strip().splitlines()
setup(
name="frappe_crypto",
version="1.0.0",
description="SHKeeper-based cryptocurrency payment gateway for ERPNext",
author="Performance West Inc.",
author_email="support@performancewest.net",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires,
)