forked from PaddlePaddle/PaddleSpatial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
74 lines (64 loc) · 3.13 KB
/
setup.cfg
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Here's a link about setup.cfg
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
# Project name, the project name will be used while publishing and installing
name = PaddleSpatial
# Author's name and email address
author = zhoujingbo
author_email = [email protected]
# Project version, versions only above than 1.0 will assumed as a released version.
# When modifying project version to above than 1.0, here's the rules should be followed.
#version = 0.1.0
# A brief introduction about the project, ANY NON-ENGLISH CHARACTER IS NOT SUPPORTED!
description = project descriptions here
# A longer version of introduction abouth the project, you can also include readme, change log, etc. .md or rst file is recommended.
#long_description = file: README.md, CHANGELOG.md
#long_description_content_type = text/markdown
# Main page of the project, usually the project's icode page, you can set to its wiki or other documents url instead.
home_page = https://github.com/PaddlePaddle/PaddleSpatial
# License, you can ignore this if the project is not going to open source to the public.
license = Apache 2.0 license
# Project type, you can ignore this if the project is not going to open source to the public.
# Choose the right field to fulfill from PyPI's official list.
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifier =
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
# keywords, used for indexing, easier to search for other users if they are interested of your project.
[options]
# Package name. find means search automatically, you also can have detailed configuration in options.packages.find
packages = find:
# Dependency management, all project's dependency is needed here.
# Every single line for a specified dependency, only the dependency is need, you don't have to consider the hierarchy dependency
# Versions here should be as abstract as possible, usually only specific a version range including minimum and maximum version.
#install_requires =
# six >= 1.10
# Test dependencies, all dependencies for tests here. The format is align to install_requires.
# You can use the internal unittest, or the simplier framework such as pytest or nose.
# python3 has a mock library with itself, but it's not exist in python 2, add as you need.
#tests_require =
# pytest
# mock
# directory for unit test
test_suite = paddlespatial.tests
# add all data files controled by git
include_package_data = True
# You can run zip source code for plain python project
zip_safe = False
# You can set this configuration to let users run directly the main entrance function
#[options.entry_points]
#console_scripts =
# PaddleSpatial = paddlespatial.cmdline:main
# You can add conf/data directory into package, the following directory will be installed under site-package
# Only file is supported, but you can use wildcard instead.
#[options.package_data]
#paddlespatial =
# conf/*
# data/*
[sdist]
dist_dir = output/dist
[bdist_wheel]
# set universal=1 if this project can both run in python 2 or 3 environment.
#universal=1
dist_dir = output/dist