-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
36 lines (33 loc) · 1.56 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
from setuptools import setup
__author__ = 'FlyingWolFox'
__email__ = 'lips.pissaia@gmail.com'
__version__ = '1.1'
long_description = 'This is a Parser and a creator for the Netscape Bookmarks' \
' file format, generated by browser when exporting bookmarks' \
' to html. It parses the file and deliver you an object' \
' representing the file with the bookmark structure of folders' \
' and shortcuts as objects too. The folder tree can be navigated' \
' by the "." notation. '
setup(
name='netscape-bookmarks-file-parser',
version=__version__,
packages=['NetscapeBookmarksFileParser'],
url='https://github.com/FlyingWolFox/Netscape-Bookmarks-File-Parser',
license='MIT',
author=__author__,
author_email=__email__,
description='Parser and creator for the Netscape Bookmarks file format',
long_description=long_description,
keywords='parse-netscape-bookmarks-file-1 parse-netscape-bookmarks-file '
'parse-netscape parse-bookmarks parser bookmarks netscape browser'
'create-netscape-bookmarks-file-1 create-netscape-bookmarks-file '
'create-netscape create-bookmarks create '
'generate-netscape-bookmarks-file-1 generate-netscape-bookmarks-file '
'generate-netscape generate-bookmarks generate',
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)