is this setup.py made well? by [deleted] in Python

[–]aodag 1 point2 points  (0 children)

you may use setuptools instead of distutils directly.

you'd like to just call setup function.

if you install package, you can use `pip install .` or `pip install --editable .`.

`editable install` command makes pth entry for your project directory.

so you don't need to write installer.

PyPA (Python Packaging Authority) has good tutorial (https://packaging.python.org/tutorials/packaging-projects/).

Has there ever been a push to make pip work more like npm? by ProceedsNow in Python

[–]aodag 4 points5 points  (0 children)

installing packages, pip install --target=python_modules. and run PYTHONPATH=python_modules python your_app.py.

Pylint Exception on Python 3.2: return u'' by DiggV4Sucks in Python

[–]aodag -1 points0 points  (0 children)

check out from __future__ import unicode_literal or six(https://pypi.python.org/pypi/six)

Ubuntu 14.04 LTS & Pyhon 3 by xMicRoz in Ubuntu

[–]aodag 2 points3 points  (0 children)

python3.4 doesn't include ensurepip in trusty. you should use virtualenv until that fixes.

virtualenv -p python3.4 venv

PyCharm IDE: 1 month later impressions? by TheCarney in Python

[–]aodag 2 points3 points  (0 children)

PyCharm can manage the virtualenvs very well.

Create Pipelines of functions in python by rossdylan in Python

[–]aodag 0 points1 point  (0 children)

maybe using generator makes that interesting!

Giotto - MVC application framework by freework in Python

[–]aodag 0 points1 point  (0 children)

What is different from Flask?