Skip to content

Commit

Permalink
Updated vantage6 algorithm tools
Browse files Browse the repository at this point in the history
  • Loading branch information
frankcorneliusmartin committed Jan 22, 2024
1 parent 78c0dc9 commit 780d387
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion basics/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pandas
vantage6-algorithm-tools
vantage6-algorithm-tools==4.2.1
18 changes: 9 additions & 9 deletions basics/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
here = path.abspath(path.dirname(__file__))

# get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()

# setup the package
setup(
name='v6-basics-py',
name="v6-basics-py",
version="1.0.0",
description='vantage6 basics',
description="vantage6 basics",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/IKNL/vantage6-algorithms',
long_description_content_type="text/markdown",
url="https://github.com/IKNL/vantage6-algorithms",
packages=find_packages(),
python_requires='>=3.6',
python_requires=">=3.6",
install_requires=[
'pandas',
'vantage6-algorithm-tools',
]
"pandas",
"vantage6-algorithm-tools==4.2.1",
],
)

0 comments on commit 780d387

Please sign in to comment.