forked from eifos-git/graphene-healthchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (32 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
VERSION = "0.1.10"
URL = "https://github.com/chainsquad/graphene-healthchecker"
setup(
name="graphene-healthchecker",
version=VERSION,
description="Python library for RPC-healthchecking for graphene blockchains",
download_url="{}/tarball/{}".format(URL, VERSION),
author="ChainSquad GmbH",
author_email="[email protected]",
maintainer="Fabian Schuh",
maintainer_email="[email protected]",
url=URL,
keywords=["graphene", "blockchain", "health", "api", "rpc"],
packages=["graphene_health"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial",
],
entry_points={"console_scripts": ["graphenehealth = graphene_health.cli:main"]},
install_requires=open("requirements.txt").readlines(),
setup_requires=["pytest-runner"],
tests_require=["pytest"],
include_package_data=True,
)