From c6aa1a1dbdde6702a2aa7f599c5d1f1d2e55365c Mon Sep 17 00:00:00 2001 From: lokijuhy Date: Wed, 1 Sep 2021 15:24:24 +0200 Subject: [PATCH] add detail to pypi page --- setup.py | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4726ac0..d1c3315 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,31 @@ from setuptools import setup, find_packages +URL = "https://github.com/uzh-dqbm-cmi/code-sync" +PROJECT_URLS = { + "Bug Tracker": "https://github.com/uzh-dqbm-cmi/code-sync/issues", + "Documentation": "https://github.com/uzh-dqbm-cmi/code-sync", + "Source Code": "https://github.com/uzh-dqbm-cmi/code-sync", +} + +with open("README.md", "r") as fh: + long_description = fh.read() + setup(name='code_sync', - version='0.2.0', - description='', - url='https://github.com/uzh-dqbm-cmi/code-sync', + version='0.2.1', + description='Sync code to a remote machine', + long_description=long_description, + long_description_content_type="text/markdown", + url=URL, + project_urls=PROJECT_URLS, packages=find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Development Status :: 2 - Pre-Alpha", + "Intended Audience :: Science/Research", + "Topic :: Scientific/Engineering", + ], python_requires='>3.6.0', install_requires=[ 'watchdog',