-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (52 loc) · 1.77 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from codecs import open
# To use a consistent encoding
from os import path
from setuptools import find_packages
# Always prefer setuptools over distutils
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="dfuse",
packages=find_packages(),
version="0.0.8",
description="Python wrapper around the dfuse.io API.",
author="chmod77",
author_email="ch33s3codes@gmail.com",
url="https://github.com/chmod77/dfuse-python",
project_urls={
"Bug Reports": "https://github.com/chmod77/dfuse-python/issues",
"Buy me a coffee": "https://github.com/chmod77/dfuse-python#buy-me-a-coffee",
},
license="MIT License",
install_requires=[
"requests>=2.22.0",
"requests_cache>=0.5.2",
"websockets>=8.0.2",
"grpcio>=1.23.0",
"grpcio-tools>=1.23.0",
"python-decouple>=3.1",
],
keywords=["EOSIO", "API", "dfuse"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description=long_description,
long_description_content_type="text/markdown",
)