setup.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. """A setuptools based setup module.
  2. @author: olinox14, 2017
  3. """
  4. from os import path
  5. from setuptools import setup
  6. here = path.abspath(path.dirname(__file__))
  7. with open("README.rst") as f:
  8. long_description = f.read()
  9. setup(
  10. name='xdice',
  11. version='1.1.4',
  12. description='The swiss knife for Dice roll : Command line, API (documented!), advanced dice notation parser, compilable patterns...etc.',
  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. )