setup.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. from setuptools import setup, find_packages
  2. def get_description():
  3. return "Deep Learning library for colorizing and restoring old images and video"
  4. # def get_long_description():
  5. # with open("README.md") as f:
  6. # return f.read()
  7. def get_requirements():
  8. with open("requirements.txt") as f:
  9. return f.read().splitlines()
  10. setup(
  11. name="DeOldify",
  12. version="0.0.1",
  13. packages=find_packages(exclude=["tests"]),
  14. url="https://github.com/jantic/DeOldify",
  15. license="MIT License",
  16. description=get_description(),
  17. # long_description=get_long_description(),
  18. # long_description_content_type="text/markdown",
  19. classifiers=[
  20. "Development Status :: 4 - Beta",
  21. "Framework :: Jupyter",
  22. "Intended Audience :: Developers",
  23. "Intended Audience :: Science/Research",
  24. "License :: OSI Approved :: MIT License",
  25. "Programming Language :: Python :: 3.6",
  26. "Programming Language :: Python :: 3.7",
  27. "Topic :: Scientific/Engineering :: Artificial Intelligence",
  28. "Topic :: Software Development :: Libraries :: Python Modules",
  29. ],
  30. install_requires=get_requirements(),
  31. python_requires=">=3.6",
  32. )