11 lines
346 B
Python
11 lines
346 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="idea164_bexproof_verifiable_best",
|
|
version="0.0.1",
|
|
description="BeXProof: Verifiable Best Execution and Compliance Verifier for Equity Trading (Python MVP)",
|
|
packages=find_packages(exclude=("tests", "docs")),
|
|
python_requires=">=3.9",
|
|
include_package_data=True,
|
|
)
|