Skip to content

Commit ccd9aa8

Browse files
committed
Refactor setup.py to streamline project configuration
- Removed long_description from setup as it was previously read from a file. - Eliminated unnecessary install_requires section to simplify dependencies.
1 parent d5dc74a commit ccd9aa8

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

setup.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
import setuptools
22
from pybt import __version__, __url__, __author__, __author_email__, __license__, __description__
33

4-
with open("docs/source/README.rst", "r") as f:
5-
long_description = f.read()
6-
74
setuptools.setup(
85
name='bt-python-sdk',
96
version=__version__,
107
description=__description__,
11-
long_description=long_description,
128
author=__author__,
139
author_email=__author_email__,
1410
license=__license__,
@@ -19,10 +15,6 @@
1915
'examples'
2016
],
2117
url=__url__,
22-
install_requires=[
23-
'requests>=2.31.0',
24-
'python-dotenv>=1.0.0',
25-
],
2618
python_requires='>=3.8',
2719
classifiers=[
2820
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)