-
-
Notifications
You must be signed in to change notification settings - Fork 294
/
setup.py
115 lines (106 loc) · 3.28 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/env python3
import os
import re
import shutil
from setuptools import find_packages, setup
if os.path.isfile('buku'):
shutil.copyfile('buku', 'buku.py')
with open('buku.py', encoding='utf-8') as f:
version = re.search('__version__ = \'([^\']+)\'', f.read()).group(1) # type: ignore
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
tests_require = [
'attrs>=17.4.0',
'beautifulsoup4>=4.6.0',
'Click>=7.0',
'flake8>=3.4.1',
'hypothesis>=6.0.0',
'mypy-extensions==0.4.1',
'py>=1.5.0',
'pylint>=1.7.2',
'pytest-cov',
'pytest-recording>=0.12.1',
'pytest-timeout',
'pytest>=6.2.1',
'PyYAML>=4.2b1',
'setuptools>=41.0.1',
'vcrpy>=1.13.0',
'lxml',
'flask_babel',
]
server_require = [
"arrow>=1.2.2",
"Flask-Admin>=1.6.1,<2",
"Flask-API>=3.0.post1",
"flask-paginate>=2022.1.8",
"Flask-WTF>=1.0.1",
"Flask>=2.2.2,<2.3",
"Jinja2>=3",
"werkzeug<2.4",
]
install_requires = [
'beautifulsoup4>=4.4.1',
'certifi',
'cryptography>=1.2.3',
'html5lib>=1.0.1',
'urllib3>=1.23,<2',
'pyreadline3; sys_platform == \'win32\'',
'colorama>=0.4.6; sys_platform == \'win32\'',
]
setup(
name='buku',
version=version,
description='Bookmark manager like a text-based mini-web.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Arun Prakash Jana',
author_email='[email protected]',
url='https://github.com/jarun/buku',
license='GPLv3',
python_requires='>=3.8', # requires pip>=9.0.0
platforms=['any'],
py_modules=['buku'],
install_requires=install_requires,
packages=find_packages(exclude=['tests']),
include_package_data=True,
entry_points={
'console_scripts': ['buku=buku:main', 'bukuserver=bukuserver.server:cli']
},
extras_require={
"tests": tests_require + server_require,
"server": server_require,
"docs": [
"myst-parser>=0.17.0",
"sphinx-rtd-theme>=1.0.0",
"sphinx-autobuild>=2021.3.14",
],
"packaging": ["twine>=1.11.0"],
},
test_suite='tests',
tests_require=tests_require,
keywords='cli bookmarks tag utility',
project_urls={
"Documentation": "https://buku.readthedocs.io/en/latest",
"Funding": "https://github.com/sponsors/jarun",
"Source": "https://github.com/jarun/buku",
"Tracker": "https://github.com/jarun/buku/issues",
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Utilities'
]
)