mirror of
https://github.com/FlipsideCrypto/chainwalkers-utils.git
synced 2026-02-06 10:06:43 +00:00
13 lines
389 B
Python
13 lines
389 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='chainwalkers_utils',
|
|
version='0.0.1',
|
|
description='Collection of utilities to be used across chainwalkers repos',
|
|
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
|
|
) |