Skip to content

Commit

Permalink
Merge pull request #6 from uzh-dqbm-cmi/description_for_pypi_page
Browse files Browse the repository at this point in the history
Add detail to pypi page
  • Loading branch information
lokijuhy authored Sep 1, 2021
2 parents 0b968e7 + c6aa1a1 commit f5da536
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit f5da536

Please sign in to comment.