setup.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import os
  2. from setuptools import setup
  3. PKG_NAME = 'ispformat'
  4. VERSION = __import__(PKG_NAME).__version__
  5. README = open(os.path.join(os.path.dirname(__file__), 'README')).read()
  6. # allow setup.py to be run from any path
  7. os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
  8. setup(
  9. name = 'isp-format',
  10. version = VERSION,
  11. packages = ['ispformat', 'ispformat.validator', 'ispformat.schema', 'ispformat.specs'],
  12. include_package_data = True,
  13. scripts = ['ispformat/bin/isp-format-validator'],
  14. license = '2-clause BSD License',
  15. description = 'Tools and specification related to FFDN\'s ISP format',
  16. long_description = README,
  17. url = 'http://www.ffdn.org/',
  18. author = 'Gu1',
  19. author_email = 'https://cafai.fr/',
  20. classifiers = [
  21. 'Environment :: Web Environment',
  22. 'Intended Audience :: Developers',
  23. 'License :: OSI Approved :: BSD License',
  24. 'Operating System :: OS Independent',
  25. 'Programming Language :: Python',
  26. 'Programming Language :: Python :: 2.6',
  27. 'Programming Language :: Python :: 2.7',
  28. 'Topic :: Internet :: WWW/HTTP',
  29. ],
  30. install_requires=[
  31. 'jsonschema',
  32. ],
  33. zip_safe = False,
  34. )