Skip to content

Commit

Permalink
Merge pull request #11 from zalando-incubator/pypi-page
Browse files Browse the repository at this point in the history
Add README to the PyPI page, plus some other metainfo
  • Loading branch information
nolar authored Mar 28, 2019
2 parents 84a99f5 + 5e8248b commit e5e8a9f
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,31 @@
import os.path

from setuptools import setup, find_packages

LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
DESCRIPTION = LONG_DESCRIPTION.splitlines()[0].lstrip('#').strip()
PROJECT_URLS = {
'Documentation': 'https://github.com/zalando-incubator/kopf/blob/master/README.md',
'Bug Tracker': 'https://github.com/zalando-incubator/kopf/issues',
'Source Code': 'https://github.com/zalando-incubator/kopf',
}

setup(
name='kopf',
use_scm_version=True,
url='https://pypi.org/project/kopf/',

url=PROJECT_URLS['Source Code'],
project_urls=PROJECT_URLS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='Sergey Vasilyev',
author_email='sergey.vasilyev@zalando.de',
maintainer='Sergey Vasilyev, Chiara Mezzavilla',
maintainer_email='sergey.vasilyev@zalando.de, chiara.mezzavilla@zalando.de',
keywords=['kubernetes', 'operator', 'framework', 'python', 'k8s'],
license='MIT',

zip_safe=True,
packages=find_packages(),
include_package_data=True,
entry_points={
Expand Down

0 comments on commit e5e8a9f

Please sign in to comment.