Skip to content

Commit 68d5acd

Browse files
committed
clarify Windows installation and adjust setuptools for proper PyPi publishing
1 parent 4152a36 commit 68d5acd

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ or, if you prefer a local user installation:
5252

5353
pip install --user twitter-toolbox
5454

55+
For **Microsoft Windows** users, you should run `pip` through the Python interpreter:
56+
57+
python -m pip install twitter-toolbox
58+
5559
## Configuration File
5660

5761
The Twitter Toolbox is globally configured using the simple [configuration language from Python][python-config] stored into a file named `.twtoolbox.cfg` under your home directory (please note the leading period `.`).

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[metadata]
22
description-file = README.md
33
name = twitter-toolbox
4-
version = 1.0.7
4+
version = 1.1.0
55
description = Twitter Toolbox for Python
66
long_description = Twitter Toolbox for Python
77
author = Hugo Hromic
88
author_email = hhromic@gmail.com
99
maintainer = Hugo Hromic
1010
maintainer_email = hhromic@gmail.com
1111
url = https://github.com/hhromic/python-twitter-toolbox
12-
download_url = https://github.com/hhromic/python-twitter-toolbox/tarball/1.0.7
12+
download_url = https://github.com/hhromic/python-twitter-toolbox/tarball/1.1.0
1313
requires = tweepy, colorlog
14+
install_requires = tweepy, colorlog
1415
provides = twtoolbox
1516
keywords = twitter, api, cli, toolbox
1617
classifiers = Environment :: Console

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,5 @@
1313

1414
setup(
1515
packages=find_packages(),
16-
install_requires=["tweepy", "colorlog"],
1716
entry_points={"console_scripts": CONSOLE_SCRIPTS},
1817
)

0 commit comments

Comments
 (0)