-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
64 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.2.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
""" | ||
Authors: J. A. Moreno-Guerra | ||
Last modification: 05/23/2022 | ||
Last modification: 04/09/2024 | ||
Corresponding author: [email protected] | ||
""" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
numpy | ||
pandas | ||
tabulate | ||
git+https://github.com/jzsmoreno/pydbsmgr | ||
pydbsmgr | ||
pyarrow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
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() | ||
|
||
about = {} | ||
ROOT_DIR = Path(__file__).resolve().parent | ||
PACKAGE_DIR = ROOT_DIR / "merge_by_lev" | ||
with open(PACKAGE_DIR / "VERSION") as f: | ||
_version = f.read().strip() | ||
about["__version__"] = _version | ||
|
||
setuptools.setup( | ||
name="merge_by_lev", | ||
version="0.2.7", | ||
version=about["__version__"], | ||
author="J. A. Moreno-Guerra", | ||
author_email="[email protected]", | ||
description="Testing installation of Package", | ||
|
@@ -15,12 +31,7 @@ | |
project_urls={"Bug Tracker": "https://github.com/jzsmoreno/merge_by_lev"}, | ||
license="MIT", | ||
packages=["merge_by_lev"], | ||
install_requires=[ | ||
"numpy", | ||
"pandas", | ||
"tabulate", | ||
"pyarrow", | ||
], | ||
install_requires=install_requires, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
|