-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 902 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 902 Bytes
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
from setuptools import setup
from os import path, getcwd
setup(
name="urlscrub",
version="0.1.0",
author="Neil Graham",
author_email="grahamneiln@gmail.com",
url="https://github.com/NeilGraham/urlscrub",
license_files="LICENSE.txt",
description="Tool for parsing URL webpage into JSON + RDF.",
long_description=open(path.join(getcwd(), "README.md")).read()
# Replace local links to 'docs/' to Github page 'docs/'.
.replace(
"](docs/",
"](https://github.com/NeilGraham/urlscrub/blob/master/docs/",
),
long_description_content_type="text/markdown",
packages=["urlscrub"],
package_dir={"urlscrub": "package"},
entry_points={"console_scripts": ["urlscrub = urlscrub.__main__:run"]},
python_requires=">=3.10",
install_requires=[
"pytest >= 7.1.2",
"selenium >= 4.2.0",
"rdfhash >= 0.3.0",
],
)