Coder Social home page Coder Social logo

python-clickclick's Issues

Optionally accept adding new line after Action message

I might be missing other workaround, assuming the following:

with Action('Get stuff ...'):
    print(yaml_stuff)

the output will look like:

Get stuff ...id: yaml-obj-id
key: value

OK

I suggest adding nl=False to Action, as in case it was True it would always append a new line to the end of the action message. (this ofc instead of always calling print/secho new line in Action block)

Unable to install tar.gz in environments without access to global pypi. Please, consider building py2 wheels

Due to current pip/setuptools behavior packages listed in setup_requires are always downloaded from global pypi, regardless of index argument passed to pip install (please, see pypa/setuptools#209) for more details. This makes it impossible to install source distribution in environments without access to global pypi on python2.7.

  • The easier fix:
    add setup.cfg to the project with the following content:
[bdist_wheel]
universal=1

This will result in release.sh producing py2py3 wheel (just like click project) and the wheel doesn't suffer from the setuptools bug mentioned above.

  • The harder fix:
    figure which setup.py commands need ['six', 'flake8'] and do something along the lines of
import sys
...
need = {'clean', 'flake8', 'test'}.intersection(sys.argv)
setup_requires = ['six', 'flake8'] if need else []

Thank you!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.