summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrebs <drebs@riseup.net>2017-10-06 11:42:45 -0300
committerdrebs <drebs@riseup.net>2017-10-06 12:11:59 -0300
commit96739784a20ddb817ef4db7dcdec86c52fa9ef41 (patch)
treeada20b3754ef74aa55f2666c15c52052f1071bca
parentddef89b093929387614c52896ae4e10b3714be65 (diff)
[pkg] deprecate old pypi packages0.9.6post3
-rw-r--r--client/setup.py7
-rw-r--r--common/setup.py7
-rw-r--r--server/setup.py7
3 files changed, 15 insertions, 6 deletions
diff --git a/client/setup.py b/client/setup.py
index 0952048e..60c515bc 100644
--- a/client/setup.py
+++ b/client/setup.py
@@ -24,7 +24,7 @@ from setuptools import find_packages
from setuptools import Command
import versioneer
-trove_classifiers = (
+trove_classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
@@ -35,7 +35,7 @@ trove_classifiers = (
"Programming Language :: Python :: 2.7",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules"
-)
+]
DOWNLOAD_BASE = ('https://github.com/leapcode/bitmask_client/'
'archive/%s.tar.gz')
@@ -132,6 +132,9 @@ setup(
maintainer='Kali Kaneko',
maintainer_email='kali@leap.se',
long_description=(
+ "**DEPRECATED - this package has been merged with other parts of "
+ "Soledad as is now available in**: "
+ "https://pypi.python.org/pypi/leap.soledad - "
"Soledad is the part of LEAP that allows application data to be "
"securely shared among devices. It provides, to other parts of the "
"LEAP project, an API for data storage and sync."
diff --git a/common/setup.py b/common/setup.py
index 6de26034..f9b953dd 100644
--- a/common/setup.py
+++ b/common/setup.py
@@ -28,7 +28,7 @@ import versioneer
from pkg import utils
-trove_classifiers = (
+trove_classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
@@ -40,7 +40,7 @@ trove_classifiers = (
"Programming Language :: Python :: 2.7",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules"
-)
+]
DOWNLOAD_BASE = ('https://github.com/leapcode/bitmask_client/'
'archive/%s.tar.gz')
@@ -153,6 +153,9 @@ setup(
maintainer='Kali Kaneko',
maintainer_email='kali@leap.se',
long_description=(
+ "**DEPRECATED - this package has been merged with other parts of "
+ "Soledad as is now available in**: "
+ "https://pypi.python.org/pypi/leap.soledad - "
"Soledad is the part of LEAP that allows application data to be "
"securely shared among devices. It provides, to other parts of the "
"LEAP project, an API for data storage and sync."
diff --git a/server/setup.py b/server/setup.py
index a18d0b2d..a4bac85f 100644
--- a/server/setup.py
+++ b/server/setup.py
@@ -35,7 +35,7 @@ else:
data_files = [("/etc/init.d/", ["pkg/soledad-server"])]
-trove_classifiers = (
+trove_classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
@@ -47,7 +47,7 @@ trove_classifiers = (
"Programming Language :: Python :: 2.7",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules"
-)
+]
DOWNLOAD_BASE = ('https://github.com/leapcode/bitmask_client/'
'archive/%s.tar.gz')
@@ -148,6 +148,9 @@ setup(
maintainer='Kali Kaneko',
maintainer_email='kali@leap.se',
long_description=(
+ "**DEPRECATED - this package has been merged with other parts of "
+ "Soledad as is now available in**: "
+ "https://pypi.python.org/pypi/leap.soledad - "
"Soledad is the part of LEAP that allows application data to be "
"securely shared among devices. It provides, to other parts of the "
"LEAP project, an API for data storage and sync."