2023-11-17 12:33:22 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='social-photos',
|
2023-11-18 10:25:23 +00:00
|
|
|
version='1.2',
|
2023-11-17 12:33:22 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
2023-11-17 12:46:11 +00:00
|
|
|
'blurhash==1.1.4',
|
|
|
|
'certifi==2023.7.22',
|
|
|
|
'charset-normalizer==3.3.2',
|
|
|
|
'decorator==5.1.1',
|
|
|
|
'flickrapi==2.4.0',
|
|
|
|
'idna==3.4',
|
|
|
|
'Mastodon.py==1.8.1',
|
|
|
|
'oauthlib==3.2.2',
|
|
|
|
'pyexiv2==2.8.3',
|
|
|
|
'python-dateutil==2.8.2',
|
|
|
|
'python-magic==0.4.27',
|
|
|
|
'pytz==2023.3.post1',
|
|
|
|
'requests==2.31.0',
|
|
|
|
'requests-oauthlib==1.3.1',
|
|
|
|
'requests-toolbelt==1.0.0',
|
|
|
|
'six==1.16.0',
|
|
|
|
'toml==0.10.2',
|
|
|
|
'urllib3==2.0.7',
|
2023-11-17 12:33:22 +00:00
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts':[
|
|
|
|
'social-photos = social_photos.main:main'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|