-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.38 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.38 KB
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
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# pyWeb3 : setup data
# Copyright (C) 2021-2022 BitLogiK
from setuptools import setup, find_packages
VERSION = "0.1.7"
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="pyweb3",
version=VERSION,
description="Web3 RPC client for Python wallets",
long_description=readme + "\n\n",
long_description_content_type="text/markdown",
keywords="web3 blockchain wallet cryptography",
author="BitLogiK",
author_email="contact@bitlogik.fr",
url="https://github.com/bitlogik/pyWeb3",
license="GPLv3",
python_requires=">=3.6.1",
install_requires=[
"wsproto>=1.0.0",
"h11>=0.9.0,<1",
],
package_data={},
include_package_data=False,
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
zip_safe=False,
)