setup.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. """A setuptools based setup module.
  2. @author: olinox14, 2017
  3. """
  4. from setuptools import setup
  5. from os import path
  6. here = path.abspath(path.dirname(__file__))
  7. with open(path.join(here, 'README.md'), encoding='utf-8') as f:
  8. long_description = f.read()
  9. setup(
  10. name='xdice',
  11. version='1.0.0',
  12. description='Lightweight python library for managing xdice, scores, and xdice-notation patterns.',
  13. long_description=long_description,
  14. url='https://github.com/cro-ki/xdice',
  15. author='Olivier Massot',
  16. author_email='croki.contact@gmail.com',
  17. license='GNU',
  18. py_modules=['xdice', 'roll'],
  19. python_requires='>=3.3',
  20. include_package_data=True,
  21. classifiers=[
  22. 'Development Status :: 5 - Production/Stable',
  23. 'Intended Audience :: Developers',
  24. "Intended Audience :: Other Audience",
  25. 'Topic :: Games/Entertainment :: Board Games',
  26. 'Topic :: Games/Entertainment :: Role-Playing',
  27. 'Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)',
  28. 'Topic :: Games/Entertainment :: Turn Based Strategy',
  29. 'License :: OSI Approved :: GNU General Public License (GPL)',
  30. 'Programming Language :: Python :: 3.3',
  31. 'Programming Language :: Python :: 3.4',
  32. 'Programming Language :: Python :: 3.5',
  33. 'Programming Language :: Python :: 3.6',
  34. ],
  35. keywords='xdice roll d20 game random parser dices role board',
  36. )