Skip to content

Commit e1fcae1

Browse files
committed
update setup.py with new maintainer info
1 parent 45721a4 commit e1fcae1

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

LICENSE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright [2017] The Climate Corporation (https://climate.com)
2+
Additions copyright 2019-2020 Nathan J. Mehl <pypi@memory.blank.org>
23

34
Licensed under the Apache License, Version 2.0 (the "License");
45
you may not use this file except in compliance with the License.

setup.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
import setuptools
2-
from distutils.core import setup
1+
from setuptools import setup
32

4-
__VERSION__ = '1.4.1'
3+
__VERSION__ = '1.4.2'
54

65
setup(
76
name='pydpkg',
87
packages=['pydpkg'], # this must be the same as the name above
98
python_requires=">=3.4",
109
version=__VERSION__,
11-
description='A python library for parsing debian package control headers and comparing version strings',
10+
description=('A python library for parsing debian package control '
11+
'headers and comparing version strings'),
1212
long_description=open('README.md').read(),
1313
long_description_content_type='text/markdown',
1414
author='Nathan J. Mehl',
15-
author_email='n@climate.com',
16-
url='https://github.com/theclimatecorporation/python-dpkg',
17-
download_url='https://github.com/theclimatecorporation/python-dpkg/tarball/%s' % __VERSION__,
15+
author_email='pypi@memory.blank.org',
16+
url='https://github.com/memory/python-dpkg',
17+
download_url=(
18+
'https://github.com/memory/python-dpkg/tarball/%s' % __VERSION__),
1819
keywords=['apt', 'debian', 'dpkg', 'packaging'],
1920
setup_requires=[
2021
'wheel'

0 commit comments

Comments
 (0)