-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
76 lines (70 loc) · 2.12 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
import os
from setuptools import setup, find_packages
from os import path
# to get pylint to shut up
__appname__ = None
__appversion__ = None
# __appname__, __appversion__, and friends come from here
exec(open("mementoembed/version.py").read())
here = path.abspath(path.dirname(__file__))
# print("here is.... {}".format(here))
# print("directory contents: {}".format(os.listdir(here)))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=__appname__.lower(),
version=__appversion__,
packages=find_packages(),
long_description_content_type="text/markdown",
long_description=long_description,
url='https://github.com/oduwsdl/MementoEmbed',
author='Shawn M. Jones',
author_email='[email protected]',
license='MIT',
include_package_data=True,
install_requires=[
'aiu',
'Brotli',
'bs4',
'cairosvg',
'dicttoxml',
'flask',
'html5lib',
'htmlmin',
'imageio',
'ImageHash',
'justext',
'Pillow',
'python-datauri',
'python-magic',
'readability-lxml',
'redis',
'redis_namespace',
'requests',
'requests_cache',
'requests-futures',
'sphinx',
'summa',
'tldextract',
'wordcloud'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Text Processing',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
test_suite="tests.unit",
zip_safe=True,
keywords='webarchives memento embeds nlp'
)