-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
30 lines (28 loc) · 993 Bytes
/
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
import setuptools
with open("README.md") as f:
desc = f.read()
setuptools.setup(
name="twitter-image-dl",
version="0.2.2",
license="MIT",
url="https://github.com/morinokami/twitter-image-downloader",
keywords=["Twitter", "image"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics",
],
description="Twitter image downloader",
long_description=desc,
long_description_content_type="text/markdown",
author="Shinya Fujino",
author_email="[email protected]",
packages=["twt_img"],
entry_points={"console_scripts": ["twt_img=twt_img.twt_img:main"]},
install_requires=["python-dateutil", "requests"],
)