From 74d7ff96142c2da375e12df91e23fb50c2b2af88 Mon Sep 17 00:00:00 2001 From: tilly-Q Date: Tue, 18 Mar 2014 16:49:48 -0400 Subject: Big update. I added in a json-ld context file which will be used in all our metadata columns in the future. The context describes the dublin core elements. It still has not been finalized however. --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index d3f91686..93873d73 100644 --- a/setup.py +++ b/setup.py @@ -66,6 +66,7 @@ try: 'six>=1.4.1', 'oauthlib==0.5.0', 'unidecode', + 'jsonschema', ## Annoying. Please remove once we can! We only indirectly ## use pbr, and currently it breaks things, presumably till -- cgit v1.2.3 From fbb13abe9a22d08c3a2b86245cf02c1363c36d86 Mon Sep 17 00:00:00 2001 From: tilly-Q Date: Tue, 15 Apr 2014 13:35:22 -0400 Subject: Added the 'requests' library as a dependency and switched over to using it to fetch remote pieces of media in the batchupload script --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 93873d73..12739ffd 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ try: 'oauthlib==0.5.0', 'unidecode', 'jsonschema', + 'requests', ## Annoying. Please remove once we can! We only indirectly ## use pbr, and currently it breaks things, presumably till -- cgit v1.2.3 From ec5a385ada3401d6aab65c334b44ce5492ad032a Mon Sep 17 00:00:00 2001 From: tilly-Q Date: Tue, 18 Mar 2014 16:49:48 -0400 Subject: Big update. I added in a json-ld context file which will be used in all our metadata columns in the future. The context describes the dublin core elements. It still has not been finalized however. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 59f0ab8f..15fd913c 100644 --- a/setup.py +++ b/setup.py @@ -66,8 +66,10 @@ try: 'mock', 'itsdangerous', 'pytz', + 'six>=1.4.1', 'oauthlib==0.5.0', 'unidecode', + 'jsonschema', 'ExifRead', # PLEASE change this when we can; a dependency is forcing us to set this -- cgit v1.2.3 From 4ed4908cbd04cb5c9a159ac5fb603590a1641e6a Mon Sep 17 00:00:00 2001 From: tilly-Q Date: Thu, 29 May 2014 12:57:40 -0400 Subject: Added pyld to the mediagoblin dependencies because it is necessary with the new metadata functionality. --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 0716e45f..74da5634 100644 --- a/setup.py +++ b/setup.py @@ -71,6 +71,7 @@ try: 'unidecode', 'jsonschema', 'requests', + 'pyld', 'ExifRead', # PLEASE change this when we can; a dependency is forcing us to set this -- cgit v1.2.3 From c5eb24b8349be7659a87123e792747b1a67cc269 Mon Sep 17 00:00:00 2001 From: Jessica Tallon Date: Tue, 8 Jul 2014 00:02:16 +0100 Subject: Allow crypto.random_string to take optional alphabet param --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 74da5634..e2e84f2b 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ try: 'itsdangerous', 'pytz', 'six>=1.4.1', - 'oauthlib==0.5.0', + 'oauthlib', 'unidecode', 'jsonschema', 'requests', -- cgit v1.2.3 From 478e4c9365cd2a6df1d7dc6b59c18c0a8289ca6c Mon Sep 17 00:00:00 2001 From: Low Kian Seong Date: Tue, 26 Aug 2014 07:06:01 +0800 Subject: Update setup.py A `description` is needed so that project is not listed as `UNKNOWN` on `pypi` --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e2e84f2b..ee5656c4 100644 --- a/setup.py +++ b/setup.py @@ -115,6 +115,7 @@ try: url="http://mediagoblin.org/", download_url="http://mediagoblin.org/download/", long_description=open(READMEFILE).read(), + description='MediaGoblin is a place to store all your different media', classifiers=[ "Development Status :: 3 - Alpha", "Environment :: Web Environment", -- cgit v1.2.3 From a6570fae0303eec403034bbea61235c85cdb0654 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sun, 7 Sep 2014 09:39:01 -0500 Subject: Slight tweak to the description wording --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index ee5656c4..468ea294 100644 --- a/setup.py +++ b/setup.py @@ -115,7 +115,7 @@ try: url="http://mediagoblin.org/", download_url="http://mediagoblin.org/download/", long_description=open(READMEFILE).read(), - description='MediaGoblin is a place to store all your different media', + description='MediaGoblin is a web application for publishing all kinds of media', classifiers=[ "Development Status :: 3 - Alpha", "Environment :: Web Environment", -- cgit v1.2.3