1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-07-07 12:29:16 -04:00
ports/net/turses/files/patch-setup.py
Kubilay Kocak b110de5600 net/turses: [NEW PORT] Python Twitter client for the console
A Twitter client for the console. The goal of the project is to build a
full-featured, lightweight, and extremely configurable Twitter client.

Features:

 - Multiple timelines (buffers)
 - Multi-column
 - Tweet, Reply, Retweet, Delete tweet
 - Follow/Unfollow
 - Favorite/Unfavorite
 - Direct Messages
 - Open URLs in browser
 - Thread view
 - Unread count
 - Search
 - View users tweets
 - Fully customizable
 - Multiple accounts
 - View user profile

WWW: https://github.com/alejandrogomez/turses
2013-06-21 12:35:50 +00:00

21 lines
707 B
Python

--- ./setup.py.orig 2013-03-01 06:30:47.000000000 +1100
+++ ./setup.py 2013-06-21 22:07:23.588789531 +1000
@@ -47,7 +47,7 @@
REQUIREMENTS.append("argparse")
TEST_REQUIREMENTS = list(REQUIREMENTS)
-TEST_REQUIREMENTS.extend(["mock", "nose", "coverage", "tox"])
+TEST_REQUIREMENTS.extend(["mock", "nose"])
try:
long_description = open("README.rst").read() + "\n\n" + open("HISTORY.rst").read()
@@ -80,5 +80,8 @@
"Programming Language :: Python :: 2.7",
"Topic :: Communications",
],
+ zip_safe=False,
+ test_suite = 'nose.collector',
install_requires=REQUIREMENTS,
- tests_require=TEST_REQUIREMENTS)
+ tests_require=TEST_REQUIREMENTS),
+