setup.py 1.5 KB

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