File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[metadata]
22description-file = README.md
33name = twitter-toolbox
4- version = 1.0.4
4+ version = 1.0.5
55description = Twitter Toolbox for Python
66long_description = Twitter Toolbox for Python
77author = Hugo Hromic
88author_email = hhromic@gmail.com
99maintainer = Hugo Hromic
1010maintainer_email = hhromic@gmail.com
1111url = https://github.com/hhromic/python-twitter-toolbox
12- download_url = https://github.com/hhromic/python-twitter-toolbox/tarball/1.0.4
12+ download_url = https://github.com/hhromic/python-twitter-toolbox/tarball/1.0.5
1313install_requires = tweepy, colorlog
1414requires = tweepy, colorlog
1515provides = twtoolbox
@@ -20,3 +20,6 @@ platforms = all
2020
2121[options.package_data]
2222twtoolbox = defaults.cfg
23+
24+ [bdist_wheel]
25+ universal = 1
Original file line number Diff line number Diff line change 33"""Main setup script."""
44
55import ast
6+ from os import path
67from setuptools import setup , find_packages
78
8- CLI_TREE = ast .parse (open (' twtoolbox/ cli.py' ).read ())
9+ CLI_TREE = ast .parse (open (path . join ( " twtoolbox" , " cli.py" ) ).read ())
910CONSOLE_SCRIPTS = ["%s = twtoolbox.cli:%s" % (fn .name .replace ("_" , "-" ), fn .name )
1011 for fn in CLI_TREE .body
1112 if isinstance (fn , ast .FunctionDef ) and fn .name .startswith ('tt_' )]
You can’t perform that action at this time.
0 commit comments