setup.py 475 B

12345678910111213141516171819
  1. from setuptools import setup
  2. def read_requires(file_path: str):
  3. with open(file_path, "r") as file:
  4. return file.read().splitlines()
  5. setup(
  6. name='Crop Fragment',
  7. version='1.0.0',
  8. description='Cuts off the selected fragment from the image',
  9. author='NBuhsx',
  10. author_email='sergey33sergey@yandex.com',
  11. url="https://notabug.org/NBuhsx/Crop Fragment",
  12. packages=["cropp_fragment"],
  13. install_requires=read_requires("requirements.txt")
  14. )