diff options
author | Leonard Richardson <leonardr@segfault.org> | 2023-04-05 08:53:36 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2023-04-05 08:53:36 -0400 |
commit | abd7418a45182fa4296b3d91ba0aca865dad4792 (patch) | |
tree | 28275c297f9f1e3804f200f0ba60db490d97a3f5 /setup.py | |
parent | d95f620a672b3fae667a0268b5d6f528178965a7 (diff) |
Remove setup.py, completing the migration to hatch. Add a .gitignore file based on the soupsieve .gitignore file.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/setup.py b/setup.py deleted file mode 100644 index e96eca7..0000000 --- a/setup.py +++ /dev/null @@ -1,44 +0,0 @@ -from setuptools import ( - setup, - find_packages, -) -import sys - -from bs4 import __version__ - -with open("README.md", "r") as fh: - long_description = fh.read() - -setup( - name="beautifulsoup4", - version = __version__, - author="Leonard Richardson", - author_email='leonardr@segfault.org', - url="https://www.crummy.com/software/BeautifulSoup/bs4/", - download_url = "https://www.crummy.com/software/BeautifulSoup/bs4/download/", - description="Screen-scraping library", - python_requires='>=3.6.0', - install_requires=[ - "soupsieve >1.2", - ], - tests_require=['pytest'], - long_description=long_description, - long_description_content_type="text/markdown", - license="MIT", - packages=['bs4', 'bs4/builder', 'bs4/tests'], - # NOTE: Stuff like the documentation is included via MANIFEST.in - extras_require = { - 'lxml' : [ 'lxml'], - 'html5lib' : ['html5lib'], - }, - classifiers=["Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python", - 'Programming Language :: Python :: 3', - "Topic :: Text Processing :: Markup :: HTML", - "Topic :: Text Processing :: Markup :: XML", - "Topic :: Text Processing :: Markup :: SGML", - "Topic :: Software Development :: Libraries :: Python Modules", - ], -) |