setup.py 4.4 KB
Newer Older
C
Chengmo 已提交
1 2
# coding=utf8
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
T
tangwei 已提交
3 4 5 6 7 8 9 10 11 12 13 14
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
T
for whl  
tangwei 已提交
15
"""
16
setup for paddle-rec.
T
for whl  
tangwei 已提交
17
"""
T
tangwei 已提交
18

T
tangwei 已提交
19
import os
T
tangwei 已提交
20

T
tangwei 已提交
21
from setuptools import setup, find_packages
T
tangwei 已提交
22
import shutil
T
tangwei 已提交
23 24
import tempfile

C
Chengmo 已提交
25
requires = ["paddlepaddle >= 1.7.2", "PyYAML >= 5.1.1"]
T
for whl  
tangwei 已提交
26 27

about = {}
28
about["__title__"] = "paddle-rec"
T
for whl  
tangwei 已提交
29
about["__version__"] = "0.0.2"
30 31 32 33
about["__description__"] = "paddle-rec"
about["__author__"] = "paddle-dev"
about["__author_email__"] = "paddle-dev@baidu.com"
about["__url__"] = "https://github.com/PaddlePaddle/PaddleRec"
T
tangwei12 已提交
34

T
for mat  
tangwei 已提交
35
readme = ""
T
for whl  
tangwei 已提交
36

T
tangwei 已提交
37 38 39

def build(dirname):
    package_dir = os.path.dirname(os.path.abspath(__file__))
T
tangwei 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    shutil.copytree(
        package_dir, dirname, ignore=shutil.ignore_patterns(".git"))
    os.mkdir(os.path.join(dirname, "paddlerec"))
    shutil.move(
        os.path.join(dirname, "core"), os.path.join(dirname, "paddlerec"))
    shutil.move(
        os.path.join(dirname, "doc"), os.path.join(dirname, "paddlerec"))
    shutil.move(
        os.path.join(dirname, "models"), os.path.join(dirname, "paddlerec"))
    shutil.move(
        os.path.join(dirname, "tests"), os.path.join(dirname, "paddlerec"))
    shutil.move(
        os.path.join(dirname, "tools"), os.path.join(dirname, "paddlerec"))

    for f in os.listdir(dirname):
        if os.path.isdir(f):
            continue
        if os.path.splitext(f)[1] == ".py":
            shutil.move(
                os.path.join(dirname, f), os.path.join(dirname, "paddlerec"))
T
tangwei 已提交
60

61
    packages = find_packages(dirname, include=('paddlerec.*'))
T
tangwei 已提交
62
    package_dir = {'': dirname}
63
    package_data = {}
T
tangwei 已提交
64

T
tangwei 已提交
65 66
    models_copy = [
        'data/*.txt', 'data/*/*.txt', '*.yaml', '*.sh', 'tree/*.npy',
67
        'tree/*.txt', 'data/sample_data/*', 'data/sample_data/train/*',
68 69
        'data/sample_data/infer/*', 'data/*/*.csv', 'Criteo_data/*',
        'Criteo_data/sample_data/train/*'
T
tangwei 已提交
70
    ]
X
xujiaqi01 已提交
71

T
tangwei 已提交
72
    engine_copy = ['*/*.sh']
73
    for package in packages:
74
        if package.startswith("paddlerec.models."):
T
tangwei 已提交
75
            package_data[package] = models_copy
76
        if package.startswith("paddlerec.core.engine"):
T
tangwei 已提交
77
            package_data[package] = engine_copy
T
tangwei 已提交
78

T
tangwei 已提交
79 80 81 82 83 84 85 86 87 88
    setup(
        name=about["__title__"],
        version=about["__version__"],
        description=about["__description__"],
        long_description=readme,
        author=about["__author__"],
        author_email=about["__author_email__"],
        url=about["__url__"],
        packages=packages,
        package_dir=package_dir,
T
tangwei 已提交
89
        package_data=package_data,
T
tangwei 已提交
90 91
        python_requires=">=2.7",
        install_requires=requires,
T
tangwei 已提交
92
        zip_safe=False)
T
tangwei 已提交
93 94


T
tangwei 已提交
95
dirname = tempfile.mktemp()
T
tangwei 已提交
96 97
build(dirname)
shutil.rmtree(dirname)
T
for whl  
tangwei 已提交
98 99 100

print('''
\033[32m
C
Chengmo 已提交
101 102 103 104 105 106
██████╗  █████╗ ██████╗ ██████╗ ██╗     ███████╗██████╗ ███████╗ ██████╗
██╔══██╗██╔══██╗██╔══██╗██╔══██╗██║     ██╔════╝██╔══██╗██╔════╝██╔════╝
██████╔╝███████║██║  ██║██║  ██║██║     █████╗  ██████╔╝█████╗  ██║
██╔═══╝ ██╔══██║██║  ██║██║  ██║██║     ██╔══╝  ██╔══██╗██╔══╝  ██║
██║     ██║  ██║██████╔╝██████╔╝███████╗███████╗██║  ██║███████╗╚██████╗
╚═╝     ╚═╝  ╚═╝╚═════╝ ╚═════╝ ╚══════╝╚══════╝╚═╝  ╚═╝╚══════╝ ╚═════╝
T
for whl  
tangwei 已提交
107 108 109
\033[0m
\033[34m
Installation Complete. Congratulations!
110
How to use it ? Please visit our webside: https://github.com/PaddlePaddle/PaddleRec
T
for whl  
tangwei 已提交
111 112
\033[0m
''')