Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
37 lines (33 sloc) 901 Bytes
from setuptools import setup, find_packages
# to get pylint to shut up
__appname__ = None
__appversion__ = None
# __appname__, __appversion__, and friends come from here
exec(open("mementoembed/version.py").read())
setup(
name=__appname__.lower(),
version=__appversion__,
packages=find_packages(),
include_package_data=True,
install_requires=[
'aiu==0.1.0a1',
'Brotli==1.0.4',
'bs4==0.0.1',
'cairosvg==2.3.0',
'dicttoxml==1.7.4',
'flask==1.0.2',
'html5lib==1.0.1',
'htmlmin==0.1.12',
'justext==2.2.0',
'Pillow==5.2.0',
'python-magic==0.4.15',
'readability-lxml==0.7',
'redis==2.10.6',
'requests>=2.20.0',
'requests_cache==0.4.13',
'sphinx==1.8.4',
'tldextract==2.2.0'
],
scripts=['bin/fetch_surrogate_data'],
test_suite="tests"
)
You can’t perform that action at this time.