mirror of
https://github.com/FlipsideCrypto/chainwalkers-utils.git
synced 2026-02-06 10:06:43 +00:00
18 lines
548 B
Python
18 lines
548 B
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name='chainwalkers_utils',
|
|
version='0.0.9',
|
|
description='Collection of utilities to be used across chainwalkers repos',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url='git@github.com:FlipsideCrypto/chainwalkers-utils.git',
|
|
author='Brian Ford',
|
|
author_email='brian@flipsidecrypto.com',
|
|
license='unlicense',
|
|
packages=setuptools.find_packages(),
|
|
zip_safe=False
|
|
) |