forked from gitronald/WebSearcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.8 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
# WebSearcher - Tools for conducting, collecting, and parsing web search
import setuptools
import codecs
import os
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), 'r') as fp:
return fp.read()
def get_version(rel_path):
for line in read(rel_path).splitlines():
if line.startswith('__version__'):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
raise RuntimeError("Unable to find version string.")
def get_readme_descriptions(fp='README.md', s='#', stop_at=2):
with open(fp, 'r') as infile:
# Extract short description (title) and long description
descriptions = {'short': '', 'long': ''}
readme = [l.strip() for l in infile.read().split('\n')]
descriptions['short'] = readme[0].replace('# ', '')
heading_idx = [idx for idx, l in enumerate(readme) if l.startswith(s)]
descriptions['long'] = ' \n'.join(readme[:heading_idx[stop_at]])
return descriptions
version = get_version("WebSearcher/__init__.py")
descriptions = get_readme_descriptions()
setuptools.setup(
name='WebSearcher',
version=version,
url='http://github.com/gitronald/WebSearcher',
author='Ronald E. Robertson',
author_email='[email protected]',
license='BSD-3-Clause',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License'
],
description=descriptions['short'],
long_description=descriptions['long'],
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
install_requires=[
'requests',
'lxml',
'beautifulsoup4',
'tldextract',
'brotli',
'pydantic'
],
python_requires='>=3.6'
)