~leonardr/beautifulsoup/bs4

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Leonard Richardson
  • Date: 2021-09-13 00:59:43 UTC
  • Revision ID: leonardr@segfault.org-20210913005943-uysm9cnv249h78d9
Ported unit tests to use pytest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
    url="http://www.crummy.com/software/BeautifulSoup/bs4/",
18
18
    download_url = "http://www.crummy.com/software/BeautifulSoup/bs4/download/",
19
19
    description="Screen-scraping library",
20
 
    python_requires='>3.0.0',
 
20
    python_requires='>=3.6.0',
21
21
    install_requires=[
22
22
        "soupsieve >1.2",
23
23
    ],
 
24
    tests_require=['pytest'],
24
25
    long_description=long_description,
25
26
    long_description_content_type="text/markdown",
26
27
    license="MIT",