Browse Source

comment for dependencies group

Guénaël Muller 7 years ago
parent
commit
c7bc52cb50
1 changed files with 8 additions and 3 deletions
  1. 8 3
      setup.py

+ 8 - 3
setup.py View File

@@ -10,22 +10,27 @@ with open(os.path.join(here, 'CHANGES.txt')) as f:
10 10
     CHANGES = f.read()
11 11
 
12 12
 requires = [
13
+    # pyramid
13 14
     'plaster_pastedeploy',
14 15
     'pyramid >= 1.9a',
15 16
     'pyramid_debugtoolbar',
16 17
     'pyramid_jinja2',
17 18
     'pyramid_retry',
19
+    'waitress',
20
+    # Database
18 21
     'pyramid_tm',
19 22
     'SQLAlchemy',
20 23
     'transaction',
21 24
     'zope.sqlalchemy',
22
-    'waitress',
23
-    'filedepot',
24
-    'babel',
25 25
     'alembic',
26
+    # API
26 27
     'hapic',
27 28
     'marshmallow <3.0.0a1,>2.0.0',
29
+    # CLI
28 30
     'cliff',
31
+    # others
32
+    'filedepot',
33
+    'babel',
29 34
 ]
30 35
 
31 36
 tests_require = [