|
|
@@ -0,0 +1,54 @@
|
|
|
+"""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='pydice',
|
|
|
+
|
|
|
+ version='1.0.0',
|
|
|
+
|
|
|
+ description='Lightweight python library for managing dice, scores, and dice-notation patterns.',
|
|
|
+ long_description=long_description,
|
|
|
+
|
|
|
+ url='https://github.com/cro-ki/pydice',
|
|
|
+
|
|
|
+ author='Olivier Massot',
|
|
|
+ author_email='croki.contact@gmail.com',
|
|
|
+
|
|
|
+ license='GNU',
|
|
|
+
|
|
|
+ py_modules=['dice', '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='dice roll d20 game random parser dices role board',
|
|
|
+
|
|
|
+)
|