-
Notifications
You must be signed in to change notification settings - Fork 125
/
setup.py
53 lines (52 loc) · 1.73 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
from distutils.core import setup
setup(
name="bitfinex-api-py",
version="3.0.4",
description="Official Bitfinex Python API",
long_description=(
"A Python reference implementation of the Bitfinex API "
"for both REST and websocket interaction."
),
long_description_content_type="text/markdown",
url="https://github.com/bitfinexcom/bitfinex-api-py",
author="Bitfinex",
author_email="support@bitfinex.com",
license="Apache-2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="bitfinex,api,trading",
project_urls={
"Bug Reports": "https://github.com/bitfinexcom/bitfinex-api-py/issues",
"Source": "https://github.com/bitfinexcom/bitfinex-api-py",
},
packages=[
"bfxapi",
"bfxapi._utils",
"bfxapi.types",
"bfxapi.websocket",
"bfxapi.websocket._client",
"bfxapi.websocket._handlers",
"bfxapi.websocket._event_emitter",
"bfxapi.rest",
"bfxapi.rest._interface",
"bfxapi.rest._interfaces",
],
install_requires=[
"pyee~=11.1.0",
"websockets~=12.0",
"requests~=2.32.3",
"types-requests~=2.31.0.10",
"types-urllib3~=1.26.25.14",
],
python_requires=">=3.8",
package_data={"bfxapi": ["py.typed"]},
)