chainwalkers-utils/setup.py

18 lines
548 B
Python
Raw Permalink Normal View History

2020-07-08 20:33:58 +00:00
import setuptools
2020-07-08 16:21:19 +00:00
2020-07-09 01:19:42 +00:00
with open("README.md", "r") as fh:
long_description = fh.read()
2020-07-08 20:33:58 +00:00
setuptools.setup(
2020-07-08 20:21:01 +00:00
name='chainwalkers_utils',
version='0.0.9',
2020-07-08 16:21:19 +00:00
description='Collection of utilities to be used across chainwalkers repos',
2020-07-09 01:19:42 +00:00
long_description=long_description,
long_description_content_type="text/markdown",
2020-07-08 16:21:19 +00:00
url='git@github.com:FlipsideCrypto/chainwalkers-utils.git',
author='Brian Ford',
author_email='brian@flipsidecrypto.com',
license='unlicense',
2020-07-08 20:23:54 +00:00
packages=setuptools.find_packages(),
2020-07-08 16:21:19 +00:00
zip_safe=False
)