-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
33 lines (30 loc) · 1.09 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
from setuptools import setup, find_packages
VERSION = '0.1.0'
DESCRIPTION = 'Check the broken links on a website'
with open('README-PYPI.md', 'r') as f:
LONG_DESCRIPTION = f.read()
# Setting up
setup(
name="blc",
version=VERSION,
author="pythonbrad",
author_email="[email protected]",
maintainer="Sanix-Darker",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(where="src"),
install_requires=["requests-html", "coloredlogs"],
keywords=["link", "url", "broken", "check"],
classifiers=[
"Topic :: Internet :: WWW/HTTP",
],
python_requires='>=3.8, <4',
package_dir={"": "src"},
data_files=[('doc', ['README-PYPI.md'])],
url="https://github.com/osscameroon/broken_link_checker",
project_urls={
'Source': 'https://github.com/osscameroon/broken_link_checker',
'Tracker': 'https://github.com/osscameroon/broken_link_checker/issues',
},
)