##// END OF EJS Templates
requirements: move db drivers into one section for easier diffing
marcink -
r3286:2d232a4f default
parent child Browse files
Show More
@@ -1,135 +1,136 b''
1 1 ## dependencies
2 2
3 3 setuptools-scm==2.1.0
4 4 amqp==2.3.1
5 5 # not released authomatic that has updated some oauth providers
6 6 https://code.rhodecode.com/upstream/authomatic/archive/90a9ce60cc405ae8a2bf5c3713acd5d78579a04e.tar.gz?md5=3c68720a1322b25254009518d1ff6801#egg=authomatic==0.1.0.post1
7 7 atomicwrites==1.2.1
8 8 attrs==18.2.0
9 9 babel==1.3
10 10 beaker==1.9.1
11 11 bleach==3.0.2
12 12 celery==4.1.1
13 13 chameleon==2.24
14 14 channelstream==0.5.2
15 15 click==6.6
16 16 colander==1.5.1
17 17 # our custom configobj
18 18 https://code.rhodecode.com/upstream/configobj/archive/a11ff0a0bd4fbda9e3a91267e720f88329efb4a6.tar.gz?md5=9916c524ea11a6c418217af6b28d4b3c#egg=configobj==5.0.6
19 19 cssselect==1.0.3
20 20 decorator==4.1.2
21 21 deform==2.0.7
22 22 docutils==0.14.0
23 23 dogpile.cache==0.6.7
24 24 dogpile.core==0.4.1
25 25 ecdsa==0.13
26 26 formencode==1.2.4
27 27 future==0.14.3
28 28 futures==3.0.2
29 29 gnureadline==6.3.8
30 30 infrae.cache==1.0.1
31 31 iso8601==0.1.11
32 32 itsdangerous==0.24
33 33 jinja2==2.9.6
34 34 billiard==3.5.0.3
35 35 kombu==4.2.0
36 36 lxml==4.2.5
37 37 mako==1.0.7
38 38 markdown==2.6.11
39 39 markupsafe==1.0.0
40 40 msgpack-python==0.5.6
41 mysql-python==1.2.5
42 pymysql==0.8.1
43 41 pyotp==2.2.7
44 42 packaging==15.2
45 43 paste==2.0.3
46 44 pastedeploy==1.5.2
47 45 pastescript==2.0.2
48 46 pathlib2==2.3.2
49 47 peppercorn==0.6
50 48 psutil==5.4.7
51 psycopg2==2.7.5
52 49 py-bcrypt==0.4
53 50 pycrypto==2.6.1
54 51 pycurl==7.43.0.2
55 52 pyflakes==0.8.1
56 53 pygments-markdown-lexer==0.1.0.dev39
57 54 pygments==2.2.0
58 55 pyparsing==1.5.7
59 56 pyramid-beaker==0.8
60 57 pyramid-debugtoolbar==4.4.0
61 58 pyramid-jinja2==2.7
62 59 pyramid-mako==1.0.2
63 60 pyramid==1.9.2
64 61 pyramid_mailer==0.15.1
65 pysqlite==2.8.3
66 62 python-dateutil
67 63 python-ldap==3.1.0
68 64 python-memcached==1.59
69 65 python-pam==1.8.4
70 66 python-saml
71 67 pytz==2018.4
72 68 tzlocal==1.5.1
73 69 pyzmq==14.6.0
74 70 py-gfm==0.1.4
75 71 redis==2.10.6
76 72 repoze.lru==0.7
77 73 requests==2.9.1
78 74 routes==2.4.1
79 75 simplejson==3.11.1
80 76 six==1.11.0
81 77 sqlalchemy==1.1.18
82 78 sshpubkeys==2.2.0
83 79 subprocess32==3.5.2
84 80 supervisor==3.3.4
85 81 tempita==0.5.2
86 82 translationstring==1.3
87 83 urllib3==1.21
88 84 urlobject==2.4.3
89 85 venusian==1.1.0
90 86 weberror==0.10.3
91 87 webhelpers2==2.0
92 88 webhelpers==1.3
93 89 webob==1.7.4
94 90 whoosh==2.7.4
95 91 wsgiref==0.1.2
96 92 zope.cachedescriptors==4.3.1
97 93 zope.deprecation==4.3.0
98 94 zope.event==4.3.0
99 95 zope.interface==4.5.0
100 96
97 # DB drivers
98 mysql-python==1.2.5
99 pymysql==0.8.1
100 pysqlite==2.8.3
101 psycopg2==2.7.5
101 102
102 103 # IPYTHON RENDERING
103 104 # entrypoints backport, pypi version doesn't support egg installs
104 105 https://code.rhodecode.com/upstream/entrypoints/archive/96e6d645684e1af3d7df5b5272f3fe85a546b233.tar.gz?md5=7db37771aea9ac9fefe093e5d6987313#egg=entrypoints==0.2.2.rhodecode-upstream1
105 106 nbconvert==5.3.1
106 107 nbformat==4.4.0
107 108 jupyter_client==5.0.0
108 109
109 110 ## cli tools
110 111 alembic==1.0.5
111 112 invoke==0.13.0
112 113 bumpversion==0.5.3
113 114
114 115 ## http servers
115 116 gevent==1.3.7
116 117 greenlet==0.4.15
117 118 gunicorn==19.9.0
118 119 waitress==1.1.0
119 120 setproctitle==1.1.10
120 121
121 122 ## debug
122 123 ipdb==0.11.0
123 124 ipython==5.1.0
124 125
125 126 ## rhodecode-tools, special case
126 127 https://code.rhodecode.com/rhodecode-tools-ce/archive/v1.0.1.tar.gz?md5=ffb5d6bcb855305b93cfe23ad42e500b#egg=rhodecode-tools==1.0.1
127 128
128 129 ## appenlight
129 130 appenlight-client==0.6.26
130 131
131 132 ## test related requirements
132 133 -r requirements_test.txt
133 134
134 135 ## uncomment to add the debug libraries
135 136 #-r requirements_debug.txt
General Comments 0
You need to be logged in to leave comments. Login now