diff options
author | Philip Paquette <pcpaquette@gmail.com> | 2019-09-11 17:49:28 -0400 |
---|---|---|
committer | Philip Paquette <pcpaquette@gmail.com> | 2019-09-14 18:18:53 -0400 |
commit | 79ad3cf219a1a7ac7547f1bbc0e4b28fd30b2e0f (patch) | |
tree | f0335637e179dbc493a6d891e5ffc5955d2347e7 /setup.py | |
parent | 96c5441ac652bb2e7e396381d3fb2e0964ad68da (diff) |
Updated the missing fields in setup.py
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -15,6 +15,7 @@ # with this program. If not, see <https://www.gnu.org/licenses/>. # ============================================================================== """ 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/'}) # ------------------------------------ |