Mercurial > silorider
annotate setup.py @ 47:4be321bd5ed4
Update dependency versions
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 08 Oct 2023 13:38:08 -0700 |
parents | c8e0d4c12f92 |
children | e3d2e13e8853 |
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 = [ | |
47
4be321bd5ed4
Update dependency versions
Ludovic Chabant <ludovic@chabant.com>
parents:
26
diff
changeset
|
13 'atproto>=0.0.29', |
0 | 14 'coloredlogs>=10.0', |
47
4be321bd5ed4
Update dependency versions
Ludovic Chabant <ludovic@chabant.com>
parents:
26
diff
changeset
|
15 'dateparser>=1.1.8', |
0 | 16 'Mastodon.py>=1.3.0', |
17 'mf2py>=1.1.0', | |
18 'mf2util>=0.5.0', | |
19 'python-dateutil>=2.7.0', | |
20
a45587268314
Add missing `ronkyuu` dependency.
Ludovic Chabant <ludovic@chabant.com>
parents:
14
diff
changeset
|
20 'python-twitter>=3.4.0', |
47
4be321bd5ed4
Update dependency versions
Ludovic Chabant <ludovic@chabant.com>
parents:
26
diff
changeset
|
21 'ronkyuu>=0.6', |
4be321bd5ed4
Update dependency versions
Ludovic Chabant <ludovic@chabant.com>
parents:
26
diff
changeset
|
22 'tweepy>=4.14.0' |
0 | 23 ] |
24 | |
25 tests_require = [ | |
26 'pytest>=3.6.2' | |
27 ] | |
28 | |
29 setup_requires = [ | |
30 'setuptools-scm', | |
31 'pytest-runner' | |
32 ] | |
33 | |
34 | |
35 setup( | |
14
c6bae5dcd8d7
Fix casing in project name.
Ludovic Chabant <ludovic@chabant.com>
parents:
0
diff
changeset
|
36 name='SiloRider', |
0 | 37 use_scm_version={'write_to': 'silorider/version.py'}, |
38 description=("Scans a website's microformats and cross-posts content " | |
39 "to 'silo' services."), | |
40 long_description=long_description, | |
41 author='Ludovic Chabant', | |
42 author_email='ludovic@chabant.com', | |
43 license="Apache License 2.0", | |
44 url='https://bolt80.com/silorider', | |
45 packages=find_packages(), | |
26
c8e0d4c12f92
Fix missing config defaults
Ludovic Chabant <ludovic@chabant.com>
parents:
20
diff
changeset
|
46 include_package_data=True, |
0 | 47 setup_requires=setup_requires, |
48 tests_require=tests_require, | |
49 install_requires=install_requires, | |
50 entry_points={'console_scripts': [ | |
51 'silorider = silorider.main:main' | |
52 ]} | |
53 ) |