Skip to content

Commit 82965a5

Browse files
committed
Define all of the current PyPI tables and setup an initial migration
1 parent 007cd4c commit 82965a5

File tree

5 files changed

+2015
-0
lines changed

5 files changed

+2015
-0
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ include tox.ini
33
recursive-include docs conf.py Makefile *.rst
44
recursive-include warehouse/etc *.yml
55
recursive-include warehouse/migrations *.mako
6+
recursive-include warehouse/migrations/versions *.py
67
recursive-include warehouse/templates *.html

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"warehouse.accounts",
5353
"warehouse.cli",
5454
"warehouse.cli.db",
55+
"warehouse.legacy",
5556
"warehouse.migrations",
5657
"warehouse.utils",
5758
],

warehouse/legacy/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Licensed under the Apache License, Version 2.0 (the "License");
2+
# you may not use this file except in compliance with the License.
3+
# You may obtain a copy of the License at
4+
#
5+
# http://www.apache.org/licenses/LICENSE-2.0
6+
#
7+
# Unless required by applicable law or agreed to in writing, software
8+
# distributed under the License is distributed on an "AS IS" BASIS,
9+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
# See the License for the specific language governing permissions and
11+
# limitations under the License.

0 commit comments

Comments
 (0)