-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 781 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name="dotweet",
version='0.1',
description="Twitter from commandline",
long_description="A project to tweet, directmessage and see timeline form the command line.",
author="Anwesha Das.",
author_email="anwesha@das.community",
url="https://github.com/anweshadas/dotweet",
license="GPLv3+",
py_modules=['dotweet'],
install_requires=['Click','python-twitter'],
entry_points='''
[console_scripts]
dotweet=dotweet:main
''',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.6'
)
)