Skip to content

Commit

Permalink
Fix the problem with the setup.py and setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
psass-antidot committed Mar 18, 2020
1 parent 3bf7b7e commit 563c6d5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def get_readme():
return content


SETUP_REQUIRES = ["setuptools~=46.0.0"]
TEST_REQUIRES = ["pytest-cov"]
VERSION = "0.4.2"
NAME = "antidot-html-connector"
Expand Down Expand Up @@ -38,9 +37,8 @@ def get_readme():
packages=setuptools.find_namespace_packages(),
package_dir={},
install_requires=["beautifulsoup4", "fluidtopics>=0.2.0"],
setup_requires=SETUP_REQUIRES,
tests_require=TEST_REQUIRES,
extras_require={"test": TEST_REQUIRES, "setup": SETUP_REQUIRES},
extras_require={"test": TEST_REQUIRES},
url="https://scm.mrs.antidot.net/antidot/html-connector",
zip_safe=True,
)

0 comments on commit 563c6d5

Please sign in to comment.