From 79ad3cf219a1a7ac7547f1bbc0e4b28fd30b2e0f Mon Sep 17 00:00:00 2001 From: Philip Paquette Date: Wed, 11 Sep 2019 17:49:28 -0400 Subject: Updated the missing fields in setup.py --- setup.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 45aab20..6e09e6a 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ # with this program. If not, see . # ============================================================================== """ Package installer """ +import os import sys from setuptools import setup, find_packages @@ -32,9 +33,15 @@ PACKAGE_VERSION = '1.1.0' setup(name=PACKAGE_NAME, version=PACKAGE_VERSION, + description='Diplomacy: DATC-Compliant Game Engine with Web Interface', + long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), + long_description_content_type='text/markdown', + url='https://github.com/diplomacy/diplomacy', author='Philip Paquette', author_email='pcpaquette@gmail.com', packages=find_packages(), + keywords='diplomacy diplomacy-game game negotiation', + python_requires='>=3.5', include_package_data=True, install_requires=[ 'bcrypt', @@ -51,6 +58,9 @@ setup(name=PACKAGE_NAME, 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', - 'Topic :: Games/Entertainment :: Board Games']) + 'Topic :: Games/Entertainment :: Board Games'], + project_urls={'Bug Reports': 'https://github.com/diplomacy/diplomacy/issues', + 'Documentation': 'https://docs.diplomacy.ai/', + 'Source': 'https://github.com/diplomacy/diplomacy/'}) # ------------------------------------ -- cgit v1.2.3