Skip to content

Commit

Permalink
Update setup.py install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
jzsmoreno committed Apr 9, 2024
1 parent 14cebce commit a310b27
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 20 deletions.
2 changes: 1 addition & 1 deletion pydbsmgr/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.1
0.9.2
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy
numpy<2.0.0
pandas
clean-text
missingno
Expand Down
26 changes: 8 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
from pathlib import Path

import setuptools
from pip._internal.req import parse_requirements

# Parse the requirements.txt file
requirements = parse_requirements("requirements.txt", session="hack")

# Get the list of requirements as strings
install_requires = [str(req.requirement) for req in requirements]

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
Expand All @@ -27,24 +34,7 @@
project_urls={"Bug Tracker": "https://github.com/jzsmoreno/pydbsmgr"},
license="MIT",
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
"numpy<2.0.0",
"pandas",
"clean-text",
"missingno",
"pyodbc",
"ipython",
"SQLAlchemy",
"pyyaml",
"azure-storage-blob==12.16.0",
"python-dotenv==1.0.0",
"openpyxl==3.1.2",
"pyarrow",
"fastparquet",
"loguru",
"psutil",
"Unidecode",
],
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit a310b27

Please sign in to comment.