Skip to content

Commit bf3199a

Browse files
committed
update setup.py with new maintainer info
1 parent d6da7cb commit bf3199a

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
import setuptools
22
from distutils.core import setup
33

4-
__VERSION__ = '1.3.2'
4+
__VERSION__ = '1.3.3'
55

66
setup(
77
name='pydpkg',
88
packages=['pydpkg'], # this must be the same as the name above
99
version=__VERSION__,
1010
description='A python library for parsing debian package control headers and comparing version strings',
11+
long_description=open('README.md').read(),
12+
long_description_content_type='text/markdown',
1113
author='Nathan J. Mehl',
12-
author_email='n@climate.com',
13-
url='https://github.com/theclimatecorporation/python-dpkg',
14-
download_url='https://github.com/theclimatecorporation/python-dpkg/tarball/%s' % __VERSION__,
14+
author_email='pypi@memory.blank.org',
15+
url='https://github.com/memory/python-dpkg',
16+
download_url='https://github.com/memory/python-dpkg/tarball/%s' % __VERSION__,
1517
keywords=['apt', 'debian', 'dpkg', 'packaging'],
1618
setup_requires=[
1719
'wheel'

0 commit comments

Comments
 (0)