| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- """A setuptools based setup module.
- @author: olinox14, 2017
- """
- from setuptools import setup
- from os import path
- here = path.abspath(path.dirname(__file__))
- with open(path.join(here, 'README.md'), encoding='utf-8') as f:
- long_description = f.read()
- setup(
- name='xdice',
- version='1.0.0',
- description='Lightweight python library for managing xdice, scores, and xdice-notation patterns.',
- long_description=long_description,
- url='https://github.com/cro-ki/xdice',
- author='Olivier Massot',
- author_email='croki.contact@gmail.com',
- license='GNU',
- py_modules=['xdice', 'roll'],
- python_requires='>=3.3',
- include_package_data=True,
- classifiers=[
- 'Development Status :: 5 - Production/Stable',
- 'Intended Audience :: Developers',
- "Intended Audience :: Other Audience",
- 'Topic :: Games/Entertainment :: Board Games',
- 'Topic :: Games/Entertainment :: Role-Playing',
- 'Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)',
- 'Topic :: Games/Entertainment :: Turn Based Strategy',
- 'License :: OSI Approved :: GNU General Public License (GPL)',
- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- ],
- keywords='xdice roll d20 game random parser dices role board',
- )
|