forked from PaddlePaddle/PaddleSpatial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (23 loc) · 694 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (23 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
################################################################################
#
# Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved
#
################################################################################
"""
Setup script.
Authors: zhoujingbo(zhoujingbo@baidu.com)
Date: 2021/10/19 10:30:45
"""
from setuptools import setup
setup(
name="paddlespatial",
version="0.1.1",
author="baidu-bil",
author_email="zhoujingbo@baidu.com",
description="Adding version check",
zip_safe=False,
url='https://github.com/PaddlePaddle/PaddleSpatial',
home_page='https://github.com/PaddlePaddle/PaddleSpatial'
)