setup.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name="vat-format-checker",
  6. version="0.0.3",
  7. author="Radu Boncea",
  8. author_email="radu.boncea@gmail.com",
  9. description="A library for checking on European VAT formats",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url="https://github.com/agilegeeks/pyVat",
  13. packages=setuptools.find_packages(exclude=['tests']),
  14. entry_points={
  15. },
  16. install_requires=[
  17. ],
  18. python_requires='>=2.6',
  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 :: 2.6",
  27. "Programming Language :: Python :: 2.7",
  28. "Programming Language :: Python :: 3.0",
  29. "Programming Language :: Python :: 3.1",
  30. "Programming Language :: Python :: 3.2",
  31. "Programming Language :: Python :: 3.3",
  32. "Programming Language :: Python :: 3.4",
  33. "Programming Language :: Python :: 3.5",
  34. "Programming Language :: Python :: 3.6",
  35. "Topic :: Database :: Front-Ends",
  36. "Topic :: Office/Business :: Financial :: Accounting",
  37. "Topic :: Software Development :: Libraries :: Python Modules",
  38. "Topic :: Utilities",
  39. ],
  40. )