-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
32 lines (29 loc) · 1.17 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
from setuptools import setup
requirements = ['aiodns', 'aiohttp>=3.7.4', 'backoff', 'base58', 'flake8', 'loguru', 'typing-extensions', 'pytz', 'pycryptodome', 'httpx', 'websockets']
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='pythclient',
version='0.1.24',
packages=['pythclient'],
author='Pyth Developers',
author_email='[email protected]',
description='A library to retrieve Pyth account structures off the Solana blockchain.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pyth-network/pyth-client-py',
project_urls={
'Bug Tracker': 'https://github.com/pyth-network/pyth-client-py/issues',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
install_requires=requirements,
extras_require={
'testing': requirements + ['mock', 'pytest', 'pytest-cov', 'pytest-socket',
'pytest-mock', 'pytest-asyncio'],
},
python_requires='>=3.9.0',
)