setup.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import setuptools
  15. if __name__ == '__main__':
  16. DESCRIPTION = "Awesome Remote Sensing Toolkit based on PaddlePaddle"
  17. with open("README_EN.md", 'r', encoding='utf8') as fh:
  18. LONG_DESCRIPTION = fh.read()
  19. with open("requirements.txt", 'r') as fin:
  20. REQUIRED_PACKAGES = fin.read()
  21. with open("paddlers/.version", 'r') as fv:
  22. VERSION = fv.read().rstrip()
  23. setuptools.setup(
  24. name="paddlers",
  25. version=VERSION.replace('-', ''),
  26. author='PaddleRS Authors',
  27. author_email="",
  28. description=DESCRIPTION,
  29. long_description=LONG_DESCRIPTION,
  30. long_description_content_type="text/plain",
  31. url="https://github.com/PaddlePaddle/PaddleRS",
  32. packages=setuptools.find_packages(include=['paddlers', 'paddlers.*']) +
  33. setuptools.find_namespace_packages(include=['paddlers', 'paddlers.*']),
  34. python_requires='>=3.7',
  35. setup_requires=['cython', 'numpy'],
  36. include_package_data=True,
  37. install_requires=REQUIRED_PACKAGES,
  38. classifiers=[
  39. "Programming Language :: Python :: 3.7",
  40. "Programming Language :: Python :: 3.8",
  41. "Programming Language :: Python :: 3.9",
  42. "License :: OSI Approved :: Apache Software License",
  43. "Operating System :: OS Independent",
  44. ],
  45. license='Apache 2.0', )