Skip to content

Commit cbbb560

Browse files
committed
publish to pip
1 parent a164839 commit cbbb560

File tree

8 files changed

+24
-5
lines changed

8 files changed

+24
-5
lines changed

MANIFEST

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
3+
setup.py

altify.egg-info/PKG-INFO

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Metadata-Version: 1.1
2+
Name: altify
3+
Version: 0.1
4+
Summary: Uses deep learning to caption img tags within a web page and fills out their alt attribute with the related caption
5+
Home-page: https://github.com/parhamp/altify
6+
Author: Parham Pourdavood
7+
Author-email: [email protected]
8+
License: UNKNOWN
9+
Download-URL: https://github.com/parhamp/altify/tarball/0.1
10+
Description: UNKNOWN
11+
Keywords: alt,caption,images
12+
Platform: UNKNOWN

altify.egg-info/SOURCES.txt

Whitespace-only changes.

altify.egg-info/dependency_links.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

altify.egg-info/requires.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
beautifulsoup4
2+
html5lib

altify.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
altify

dist/altify-0.1.tar.gz

712 Bytes
Binary file not shown.

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
from distutils.core import setup
2+
23
setup(
34
name = 'altify',
4-
packages = ['altify'],
55
version = '0.1',
6-
description = 'Uses deep learning to caption img tags within a web page and fills out their alt attribute with the related caption',
6+
description = "Uses deep learning to caption img tags within a web page and fills out their alt attribute with the related caption",
77
author = 'Parham Pourdavood',
88
author_email = '[email protected]',
99
url = 'https://github.com/parhamp/altify',
1010
download_url = 'https://github.com/parhamp/altify/tarball/0.1',
11-
keywords = ['alt', 'image captioning'], # arbitrary keywords
12-
classifiers = []
13-
#install_requires=['beautifulsoup4', 'html5lib']
11+
keywords = ['alt', 'caption', 'images'], # arbitrary keywords
12+
classifiers = [],
13+
install_requires = ['beautifulsoup4', 'html5lib']
1414
)

0 commit comments

Comments
 (0)