Skip to content

Commit

Permalink
Fix packaging problem
Browse files Browse the repository at this point in the history
  • Loading branch information
skasberger committed Jun 21, 2022
1 parent 604a7dc commit 82f526a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ autopep8 = "*"
dvtests = {editable = true, path = "."}

[requires]
python_version = "3.6"
14 changes: 0 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,7 @@ def find_version(*file_paths):
raise RuntimeError("Unable to find version string.")


INSTALL_REQUIREMENTS = [
# A string or list of strings specifying what other distributions need to
# be installed when this one is.
"pydantic[dotenv]==1.7.2",
"pyDataverse==0.3.1",
"pytest-selenium==2.0.1",
"typer==0.3.2",
]

setuptools.setup(
name="dvtests", # Replace with your own username
version=find_version("src", "dataverse_tests", "__init__.py"),
author="Stefan Kasberger",
author_email="mail@stefankasberger.at",
Expand Down Expand Up @@ -66,8 +56,4 @@ def find_version(*file_paths):
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
keywords=["dataverse", "testing", "selenium", "pyDataverse"],
install_requires=INSTALL_REQUIREMENTS,
# entry_points = {
# 'console_scripts': ['utils=dvtests.utils:main'],
# }
)
1 change: 1 addition & 0 deletions src/dvtests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
__version__ = "0.1.0"
__url__ = "https://github.com/gdcc/dataverse_tests"
__description__ = "Dataverse tests."
__name__ = "dvtests"

0 comments on commit 82f526a

Please sign in to comment.