-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
57 lines (53 loc) · 1.91 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
"""setuptools setup module for granary.
Docs:
https://packaging.python.org/en/latest/distributing.html
https://setuptools.readthedocs.io/
https://www.python.org/dev/peps/pep-0440/#version-specifiers
Based on https://github.com/pypa/sampleproject/blob/master/setup.py
"""
from setuptools import setup, find_packages
setup(name='granary',
version='7.0',
description='The social web translator',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/snarfed/granary',
packages=find_packages(),
include_package_data=True,
author='Ryan Barrett',
author_email='[email protected]',
license='Public domain',
python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'License :: Public Domain',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='social facebook flickr github instagram twitter activitystreams html microformats2 meetup mf2 atom rss jsonfeed',
install_requires=[
'beautifulsoup4>=4.8',
'bech32',
'brevity>=0.2.17',
'feedgen>=0.9',
'feedparser',
'html2text>=2019.8.11',
'humanfriendly>=4.18',
'jinja2>=2.10',
'lexrpc>=0.2',
'mf2util>=0.5.0',
'multiformats>=0.3.1',
'oauth-dropins>=6.4',
'praw>=7.3.0',
'python-dateutil>=2.8',
'requests>=2.22',
'websockets>=11.0',
],
tests_require=['mox3>=0.28'],
)