-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="bs-processors",
version="0.0.1pre10",
author="RaduW",
description="html/xml processors for using with BeautifulSoup",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://raduw.github.io/bs-processors/",
entry_points = {
"console_scripts": ['bs-proc=bs_processors.cli.main:main'],
},
project_urls = {
"Documentation": "https://raduw.github.io/bs-processors/",
"Source Code": "https://github.com/RaduW/bs-processors.git",
"Bug Tracker": "https://github.com/RaduW/bs-processors/issues",
},
install_requires=[
"click", "beautifulsoup4"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"
],
keywords ="BeautifulSoup",
python_requires=">=3.7",
license="MIT",
package_dir={"": "src"},
packages=setuptools.find_namespace_packages(where="src"),
)