Files
bitfinex-api-py/setup.py
Davide Casale bdd78a817d Merge branch Davi0kProgramsThings:fix/refactoring into branch bitfinexcom:master. (#238)
# Description
<!--- Describe your changes in detail -->
PR includes some global refactoring in preparation for the v3.0.0 stable release.

## Motivation and Context
<!--- Why is this change required? What problem does it solve? -->
-

## Related Issue
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
<!--- Please link to the issue here: -->
PR fixes the following issue: -

## Type of change
<!-- Select the most suitable choice and remove the others from the checklist -->

- [X] Bug fix (non-breaking change which fixes an issue);

# Checklist:

- [X] I've done a self-review of my code;
- [X] I've made corresponding changes to the documentation;
- [X] I've made sure my changes generate no warnings;
- [X] mypy returns no errors when run on the root package;
<!-- If you use pre-commit hooks you can always check off the following tasks -->
- [X] I've run black to format my code;
- [X] I've run isort to format my code's import statements;
- [X] flake8 reports no errors when run on the entire code base;
2024-04-03 22:34:23 +02:00

53 lines
1.6 KiB
Python

from distutils.core import setup
from bfxapi._version import __version__
setup(
name="bitfinex-api-py",
version=__version__,
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 :: 4 - Beta",
"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",
],
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~=9.0.4",
"websockets~=11.0.3",
"requests~=2.28.1",
"urllib3~=1.26.14",
],
python_requires=">=3.8",
)