Skip to content

zurfyx/python-pip-skeleton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python PIP Skeleton

Execute

One of the following:

$ bin/hello
$ python -m hello
$ python hello/__main__.py

Install

One of the following:

$ pip install -e Hello
$ python setup.py install

Develop

Main: hello/__init__.py

Logic: hello/Hello.py

Publish to PyPI

Strongly suggest to read over Uploading your Project to PyPI

Requeriments

Python 2: apt-get install python-setuptools

Python 3: apt-get install python3-setuptools

First time

$ python setup.py sdist register

Beware that passwords are sent plain text. See twine

Recurrent

$ python setup.py sdist upload

Beware that passwords are sent plain text. See twine

Pypi config file

Edit: ~/.pypirc

[distutils]
index-servers=pypi

[pypi]
repository=https://pypi.python.org/pypi
username=<username>
password=<password>

About

Python PIP application skeleton

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages