Mercurial > silorider
annotate setup.py @ 20:a45587268314
Add missing `ronkyuu` dependency.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 19 Jan 2019 17:35:10 -0800 |
parents | c6bae5dcd8d7 |
children | c8e0d4c12f92 |
rev | line source |
---|---|
0 | 1 import os.path |
2 from setuptools import setup, find_packages | |
3 | |
4 | |
5 def read(fname): | |
6 with open(os.path.join(os.path.dirname(__file__), fname)) as fp: | |
7 return fp.read() | |
8 | |
9 | |
10 long_description = read('README.rst') | |
11 | |
12 install_requires = [ | |
13 'coloredlogs>=10.0', | |
14 'Mastodon.py>=1.3.0', | |
15 'mf2py>=1.1.0', | |
16 'mf2util>=0.5.0', | |
17 'python-dateutil>=2.7.0', | |
20
a45587268314
Add missing `ronkyuu` dependency.
Ludovic Chabant <ludovic@chabant.com>
parents:
14
diff
changeset
|
18 'python-twitter>=3.4.0', |
a45587268314
Add missing `ronkyuu` dependency.
Ludovic Chabant <ludovic@chabant.com>
parents:
14
diff
changeset
|
19 'ronkyuu>=0.6' |
0 | 20 ] |
21 | |
22 tests_require = [ | |
23 'pytest>=3.6.2' | |
24 ] | |
25 | |
26 setup_requires = [ | |
27 'setuptools-scm', | |
28 'pytest-runner' | |
29 ] | |
30 | |
31 | |
32 setup( | |
14
c6bae5dcd8d7
Fix casing in project name.
Ludovic Chabant <ludovic@chabant.com>
parents:
0
diff
changeset
|
33 name='SiloRider', |
0 | 34 use_scm_version={'write_to': 'silorider/version.py'}, |
35 description=("Scans a website's microformats and cross-posts content " | |
36 "to 'silo' services."), | |
37 long_description=long_description, | |
38 author='Ludovic Chabant', | |
39 author_email='ludovic@chabant.com', | |
40 license="Apache License 2.0", | |
41 url='https://bolt80.com/silorider', | |
42 packages=find_packages(), | |
43 setup_requires=setup_requires, | |
44 tests_require=tests_require, | |
45 install_requires=install_requires, | |
46 entry_points={'console_scripts': [ | |
47 'silorider = silorider.main:main' | |
48 ]} | |
49 ) |