Skip to content

Commit

Permalink
small adjustments, and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
urban48 committed Nov 7, 2016
1 parent 395f266 commit 2b4b576
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
11 changes: 9 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ v0.1.3
- more tests added


v0.2.0
v0.2.1
------
- Added support to project.json to supply
custom virtualenv arguments.
Expand All @@ -41,4 +41,11 @@ v0.2.0

- Minor general fixes and cleanup

- More tests
- More tests

v0.2.2
------

- Small updates to setup.py

- Fixed issue of disappearing README at pypi
2 changes: 1 addition & 1 deletion debpackager/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from debpackager.utils.pom import Pom
from debpackager.conf.log_conf import LOG_CONF

__version__ = '0.2.1'
__version__ = '0.2.2'

logger = logging.getLogger(__name__)

Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
test=pytest

[bdist_wheel]
universal=1
universal=1

[metadata]
description-file = README.rst
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

install_reqs = parse_requirements('requirements.txt', session=False)
reqs = [str(ir.req) for ir in install_reqs]

setup(
name='debpackager',
version=__version__,
Expand All @@ -25,13 +24,18 @@
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
'Topic :: Software Development :: Build Tools',

],
keywords='debian deb packaging package daemon dh-make',
)

0 comments on commit 2b4b576

Please sign in to comment.