29 lines
829 B
Python
29 lines
829 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from os import path
|
||
|
from io import open
|
||
|
from setuptools import setup, find_packages
|
||
|
from enforce_typing import get_version
|
||
|
|
||
|
HERE = path.abspath(path.dirname(__file__))
|
||
|
|
||
|
with open(path.join(HERE, "README.md"), encoding="utf-8") as f:
|
||
|
LONG_DESCRIPTION = f.read()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
setup(
|
||
|
name="pbcabi",
|
||
|
version=get_version(),
|
||
|
description="Utility library for parsing and processing the Partisia Blockchain's ABI format",
|
||
|
long_description=LONG_DESCRIPTION,
|
||
|
long_description_content_type="text/markdown",
|
||
|
author="Jon Michael Aanes",
|
||
|
author_email="jonjmaa@gmail.com",
|
||
|
url="https://gitfub.space/Jmaa/pbcabi",
|
||
|
packages=find_packages(),
|
||
|
license="MIT",
|
||
|
python_requires=">=3.9",
|
||
|
classifiers=[],
|
||
|
)
|
||
|
|