11from distutils .core import setup
22
3- _version = {}
4- with open ("bfxapi/_version.py" , encoding = "utf-8" ) as fp :
5- exec (fp .read (), _version ) #pylint: disable=exec-used
3+ _version = { }
4+
5+ with open ("bfxapi/_version.py" , encoding = "utf-8" ) as f :
6+ #pylint: disable-next=exec-used
7+ exec (f .read (), _version )
68
79setup (
810 name = "bitfinex-api-py" ,
2527 "Programming Language :: Python :: 3.8" ,
2628 "Programming Language :: Python :: 3.9" ,
2729 "Programming Language :: Python :: 3.10" ,
30+ "Programming Language :: Python :: 3.11" ,
2831 ],
2932 keywords = "bitfinex,api,trading" ,
3033 project_urls = {
3134 "Bug Reports" : "https://github.com/bitfinexcom/bitfinex-api-py/issues" ,
3235 "Source" : "https://github.com/bitfinexcom/bitfinex-api-py" ,
3336 },
3437 packages = [
35- "bfxapi" , "bfxapi._utils" , "bfxapi.types" ,
36- "bfxapi.websocket" , "bfxapi.websocket._client" , "bfxapi.websocket._handlers" ,
37- "bfxapi.websocket._event_emitter" ,
38- "bfxapi.rest" , "bfxapi.rest.endpoints" , "bfxapi.rest.middleware" ,
38+ "bfxapi" ,
39+ "bfxapi._utils" ,
40+ "bfxapi.types" ,
41+ "bfxapi.websocket" ,
42+ "bfxapi.websocket._client" ,
43+ "bfxapi.websocket._handlers" ,
44+ "bfxapi.websocket._event_emitter" ,
45+ "bfxapi.rest" ,
46+ "bfxapi.rest.endpoints" ,
47+ "bfxapi.rest.middleware" ,
3948 ],
4049 install_requires = [
4150 "pyee~=9.0.4" ,
4453 "urllib3~=1.26.14" ,
4554 ],
4655 python_requires = ">=3.8"
47- )
56+ )
0 commit comments