buku/setup.py

113 lines
3.0 KiB
Python

#!/usr/bin/env python3
import os
import re
import shutil
from setuptools import setup, find_packages
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-vcr>=1.0.2',
'pytest>=6.2.1',
'PyYAML>=4.2b1',
'setuptools>=41.0.1',
'vcrpy>=1.13.0',
]
server_require = [
'appdirs>=1.4.3',
'arrow>=0.12.1',
'beautifulsoup4>=4.5.3',
'cffi>=1.9.1',
'click>=6.7',
'Flask-Admin>=1.5.1',
'Flask-API>=0.6.9',
'Flask-Bootstrap>=3.3.7.1',
'flask-paginate>=0.5.1',
'flask-reverse-proxy-fix>=0.2.1',
'Flask-WTF>=0.14.2',
'Flask>=1.0.2,<2.0',
'idna>=2.5',
'itsdangerous>=0.24',
'Jinja2>=2.10.1',
'MarkupSafe>=1.0',
'packaging>=16.8',
'pyasn1>=0.2.3',
'pycparser>=2.17',
'requests>=2.21.0',
'six>=1.10.0',
'urllib3>=1.25.2',
'Werkzeug>=0.11.15',
]
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='engineerarun@gmail.com',
url='https://github.com/jarun/buku',
license='GPLv3',
python_requires='>=3.6', # requires pip>=9.0.0
platforms=['any'],
py_modules=['buku'],
install_requires=[
'beautifulsoup4>=4.4.1',
'cryptography>=1.2.3',
'urllib3>=1.23',
'html5lib>=1.0.1',
'agunua>=1.4'
],
packages=find_packages(exclude=['tests']),
include_package_data=True,
entry_points={
'console_scripts': ['buku=buku:main', 'bukuserver=bukuserver.server:cli']
},
extras_require={
'ca-certificates': ['certifi'],
'tests': tests_require + server_require,
'server': server_require,
'packaging': ['twine>=1.11.0']
},
test_suite='tests',
tests_require=tests_require,
keywords='cli bookmarks tag utility',
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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Utilities'
]
)