setup.py 862 B

12345678910111213141516171819202122
  1. from setuptools import setup, find_packages
  2. setup(
  3. name="sun-position-calculator",
  4. version="1.0.0",
  5. author="Ali miracle",
  6. author_email="alimiracle@riseup.net",
  7. description="A Python library to calculate the sun's position and phases.",
  8. long_description=open("README.md").read(),
  9. long_description_content_type="text/markdown",
  10. url="https://notabug.org/alimiracle/sun_position_calculator",
  11. packages=find_packages(),
  12. install_requires=[],
  13. classifiers=[
  14. "Development Status :: 5 - Production/Stable",
  15. "Intended Audience :: Developers",
  16. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  17. "Operating System :: OS Independent",
  18. "Programming Language :: Python :: 3",
  19. ],
  20. keywords="sun position calculator astronomy phases python library",
  21. )