-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package anishot with openstack-pbr define anishot as a python package. Introduce dependencies management via requirements.txt. Move deprecated gflags to abls-py (https://pypi.python.org/pypi/absl-py)
- Loading branch information
Showing
8 changed files
with
100 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
anishot.egg-info/ | ||
build/ | ||
*.eggs/ | ||
*__pycache__* | ||
build/ | ||
.tox/ | ||
*.pyc | ||
dist/ | ||
*.swa | ||
*.swp | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
language: python | ||
cache: | ||
- pip | ||
python: | ||
- '2.7' | ||
- '3.4' | ||
- '3.5' | ||
- 3.5-dev | ||
- '3.6' | ||
- 3.6-dev | ||
before_install: | ||
- pip install -U pip | ||
- pip install -U setuptools | ||
- pip install -U wheel | ||
- pip install -U pbr | ||
script: | ||
- python setup.py install | ||
|
||
deploy: | ||
- provider: pypi | ||
user: sourcerer-io | ||
password: your-pypi-password | ||
on: | ||
tags: true | ||
distributions: sdist bdist_wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
absl-py | ||
imageio | ||
Pillow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[metadata] | ||
name = anishot | ||
home-page = https://github.com/sourcerer-io/anishot | ||
summary = Animate a long screenshot | ||
description-file = | ||
README.md | ||
author = sourcerer-io | ||
author-email = [email protected] | ||
licence = MIT | ||
classifier = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Information Technology | ||
License :: OSI Approved :: MIT License | ||
Operating System :: POSIX | ||
Programming Language :: Python | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
|
||
[files] | ||
packages = | ||
anishot | ||
|
||
[extras] | ||
devel= | ||
pbr | ||
|
||
[entry_points] | ||
console_scripts = | ||
anishot = anishot.__main__:main | ||
|
||
[wheel] | ||
universal = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
requires=['pbd'], | ||
pbr=True, | ||
long_description_content_type="text/markdown", | ||
) |