setup.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. long_description = "Awesome Remote Sensing Toolkit based on PaddlePaddle"
  16. setuptools.setup(
  17. name="paddlers",
  18. version='0.0.1',
  19. author="paddlers",
  20. author_email="paddlers@baidu.com",
  21. description=long_description,
  22. long_description=long_description,
  23. long_description_content_type="text/plain",
  24. url="https://github.com/PaddleCV-SIG/PaddleRS",
  25. packages=setuptools.find_packages(),
  26. setup_requires=['cython', 'numpy'],
  27. install_requires=[
  28. "pycocotools", 'pyyaml', 'colorama', 'tqdm', 'paddleslim==2.2.1',
  29. 'visualdl>=2.2.2', 'shapely>=1.7.0', 'opencv-python', 'scipy', 'lap',
  30. 'motmetrics', 'scikit-learn==0.23.2', 'chardet', 'flask_cors',
  31. 'openpyxl', 'gdal'
  32. ],
  33. classifiers=[
  34. "Programming Language :: Python :: 3",
  35. "License :: OSI Approved :: Apache Software License",
  36. "Operating System :: OS Independent",
  37. ],
  38. license='Apache 2.0',
  39. )