setup.py 2.2 KB
Newer Older
T
Tingquan Gao 已提交
1
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
C
chenziheng 已提交
2 3 4 5 6 7 8 9 10 11 12 13
#
# 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
Tingquan Gao 已提交
14

C
chenziheng 已提交
15
from io import open
T
Tingquan Gao 已提交
16
from setuptools import setup
C
chenziheng 已提交
17 18 19 20 21 22

with open('requirements.txt', encoding="utf-8-sig") as f:
    requirements = f.readlines()


def readme():
littletomatodonkey's avatar
littletomatodonkey 已提交
23 24 25
    with open(
            'docs/en/inference_deployment/whl_deploy_en.md',
            encoding="utf-8-sig") as f:
C
chenziheng 已提交
26 27 28 29 30 31 32 33 34
        README = f.read()
    return README


setup(
    name='paddleclas',
    packages=['paddleclas'],
    package_dir={'paddleclas': ''},
    include_package_data=True,
T
Tingquan Gao 已提交
35
    entry_points={
36
        "console_scripts": ["paddleclas=paddleclas.paddleclas:main"]
T
Tingquan Gao 已提交
37
    },
C
chenziheng 已提交
38 39 40
    version='0.0.0',
    install_requires=requirements,
    license='Apache License 2.0',
G
update  
gaotingquan 已提交
41
    description='A treasure chest for visual recognition powered by PaddlePaddle.',
C
chenziheng 已提交
42 43 44 45 46
    long_description=readme(),
    long_description_content_type='text/markdown',
    url='https://github.com/PaddlePaddle/PaddleClas',
    download_url='https://github.com/PaddlePaddle/PaddleClas.git',
    keywords=[
G
update  
gaotingquan 已提交
47 48 49 50
        'image-classification', 'image-recognition', 'pretrained-models',
        'knowledge-distillation', 'product-recognition', 'autoaugment',
        'cutmix', 'randaugment', 'gridmask', 'deit', 'repvgg',
        'swin-transformer', 'image-retrieval-system'
C
chenziheng 已提交
51 52
    ],
    classifiers=[
G
gaotingquan 已提交
53
        'Development Status :: 5 - Production/Stable',
T
Tingquan Gao 已提交
54
        'Operating System :: OS Independent',
G
gaotingquan 已提交
55 56 57 58 59 60 61
        'Intended Audience :: Developers',
        'Intended Audience :: Education',
        'Intended Audience :: Science/Research',
        'License :: OSI Approved :: Apache Software License',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
C
chenziheng 已提交
62
    ], )