setup.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name="pyAnaf",
  6. version="0.0.3",
  7. author="Radu Boncea",
  8. author_email="radu.boncea@gmail.com",
  9. description="A wrapper API of ANAF web services",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url="https://github.com/agilegeeks/pyAnaf.git",
  13. packages=setuptools.find_packages(),
  14. entry_points={
  15. "console_scripts": [
  16. "pyanaf = pyAnaf.console:main",
  17. ]
  18. },
  19. classifiers=[
  20. "License :: OSI Approved :: MIT License",
  21. "Operating System :: OS Independent",
  22. "Development Status :: 4 - Beta",
  23. "Intended Audience :: Developers",
  24. "Intended Audience :: Financial and Insurance Industry",
  25. "License :: OSI Approved :: MIT License",
  26. "Programming Language :: Python :: 3.0",
  27. "Programming Language :: Python :: 3.1",
  28. "Programming Language :: Python :: 3.2",
  29. "Programming Language :: Python :: 3.3",
  30. "Programming Language :: Python :: 3.4",
  31. "Programming Language :: Python :: 3.5",
  32. "Programming Language :: Python :: 3.6",
  33. "Programming Language :: Python :: 3.7",
  34. "Programming Language :: Python :: 3.8",
  35. "Programming Language :: Python :: 3.9",
  36. "Programming Language :: Python :: 3.10",
  37. "Programming Language :: Python :: 3.11",
  38. "Topic :: Database :: Front-Ends",
  39. "Topic :: Office/Business :: Financial :: Accounting",
  40. "Topic :: Software Development :: Libraries :: Python Modules",
  41. "Topic :: Utilities",
  42. ],
  43. )