-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·84 lines (76 loc) · 2.38 KB
/
setup.py
File metadata and controls
executable file
·84 lines (76 loc) · 2.38 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__VERSION__ = '0.6.4'
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requirements = [
'jinja2',
'tornado',
'jinja_tornado'
]
test_requirements = [
'tornado',
'jinja2',
'urlobject',
'rdflib',
]
setup(
name='pbm',
version=__VERSION__,
description=(
'pbm works with Chromium bookmarks JSON.'),
long_description=readme + '\n\n' + history,
author='Wes Turner',
author_email='wes@wrd.nu',
url='https://github.com/westurner/pbm',
packages=[
'pbm',
],
package_dir={'pbm':
'pbm'},
include_package_data=True,
install_requires=requirements,
license="BSD",
zip_safe=False,
keywords='pbm bookmarks chrome chromium',
classifiers=[
"Programming Language :: Python :: 2",
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Utilities',
],
entry_points="""
[console_scripts]
pbm = pbm.main:main
pbmweb = pbm.app:main
[pbm_plugins]
null = pbm.plugins.null:NullPlugin
allinone = pbm.plugins.allinone:AdditionalAllFolderPlugin
bookmarkletsfolder = pbm.plugins.bookmarkletsfolder:BookmarkletsFolderPlugin
chromefolder = pbm.plugins.chromefolder:ChromeFolderPlugin
datefolder = pbm.plugins.datefolders:DateFolderPlugin
dedupe = pbm.plugins.dedupe:DedupePlugin
queuefolder = pbm.plugins.queuefolder:QueueFolderPlugin
quicklinks = pbm.plugins.quicklinks:QuicklinksFolderPlugin
starred = pbm.plugins.starred:StarredFolderPlugin
""",
test_suite='tests',
tests_require=test_requirements
)