A package for optimizing placements of containers.
Project description
Virtual Environment
Setup a virtual environment before executing any build/test/release opearations.
$ virtualenv --python=python3.6 venv
...
Installing setuptools, pip, wheel...
done.
$ . venv/bin/activate
Test
We use tox to run tests. After setting up a virtual environment, requirements and tox must be installed.
(venv) $ pip3 install -r requirements.txt
(venv) $ pip3 install tox
(venv) $ tox
...
py36: commands succeeded
linters: commands succeeded
congratulations :)
Build a development package
To build a package for development purposes, do the following.
(venv) $ python3 setup.py sdist bdist_wheel
running sdist
running egg_info
...
adding 'titus_optimize-0.0.14+hlocal.g34f75d0.dirty.dist-info/METADATA'
adding 'titus_optimize-0.0.14+hlocal.g34f75d0.dirty.dist-info/WHEEL'
adding 'titus_optimize-0.0.14+hlocal.g34f75d0.dirty.dist-info/top_level.txt'
adding 'titus_optimize-0.0.14+hlocal.g34f75d0.dirty.dist-info/RECORD'
removing build/bdist.macosx-10.9-x86_64/wheel
The packages will be in the generated dist directory
(venv) $ ls dist
titus_optimize-0.0.14+hlocal.g34f75d0.dirty-py3-none-any.whl titus_optimize-0.0.14+hlocal.g34f75d0.dirty.tar.gz
Release
Checkout the master branch
$ git checkout master
$ git pull
Update the VERSION variabled in setup.py
$ git diff HEAD~1 setup.py
diff --git a/setup.py b/setup.py
index f1a9f38..3078372 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import setup
from setuptools.command.install import install
-VERSION = "0.1.4"
+VERSION = "0.1.5"
def readme():
"""print long description"""
Commit that change
$ git add setup.py
$ git commit -m "Release 0.1.5"
Tag the commit with the same version in setup.py
$ git tag 0.1.5
Push the commit to master
$ git push origin master
Push the tags to master
$ git push --tags
This will kick off a CI job which will publish to pypi.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file titus_optimize-0.7.7.tar.gz.
File metadata
- Download URL: titus_optimize-0.7.7.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ad9881a671419013aed025822fad3ce071cb012d3ce89f472827fc6d6df3680
|
|
| MD5 |
62cb56b0c877ecfc2f5846ad067a20e5
|
|
| BLAKE2b-256 |
b14e15fe8f081c992f172189235e0efa06653909d746839fd11bf316f3d2008d
|
File details
Details for the file titus_optimize-0.7.7-py3-none-any.whl.
File metadata
- Download URL: titus_optimize-0.7.7-py3-none-any.whl
- Upload date:
- Size: 23.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9a45f6aba7251ce38b5edf63073e7ddbf42e3582538e30eba455b0d1827875b
|
|
| MD5 |
0a370ebf0f20b261982b76d49699d546
|
|
| BLAKE2b-256 |
4cdd14944276afd97dee414c86e889b9f46866ecc6dfae2a9561dd81c31a84d8
|