from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
if not os.path.exists(os.path.join(here, "README.md")):
with open(os.path.join(here, "..", "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="bitcoinpqc",
version="0.4.0",
packages=find_packages(),
description="Python bindings for libbitcoinpqc",
long_description=long_description,
long_description_content_type="text/markdown",
author="Bitcoin PQC Developers",
url="https://github.com/bitcoinpqc/libbitcoinpqc",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.7",
test_suite="tests",
)