Skip to content

Commit

Permalink
Merge pull request EVOLVED-5G#28 from EVOLVED-5G/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
rimarala authored Nov 3, 2021
2 parents 2a00496 + 388e73a commit fb36d6e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ include CONTRIBUTING.rst
include HISTORY.rst
include LICENSE
include README.rst
include requirements.txt

recursive-include tests *
recursive-exclude * __pycache__
Expand Down
2 changes: 1 addition & 1 deletion evolved5g/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Top-level package for Evolved5G_CLI."""

__author__ = "EVOLVED5G project"
__version__ = '0.2.5'
__version__ = '0.5.0'

# Uncomment next lines to give direct import access to modules
#from . import cli
Expand Down
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ pytest==6.2.4
cookiecutter==1.7.3
invoke==1.6.0
requests==2.26.0
build
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.5
current_version = 0.5.0
commit = True
tag = True

Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@
"""The setup script."""

from setuptools import setup, find_packages
from pathlib import Path

with open('README.rst') as readme_file:
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
history = history_file.read()

with Path('requirements.txt').open() as file:
INSTALL_REQUIERES = file.readlines()
with open('requirements.txt') as file:
INSTALL_REQUIERES = file.read().splitlines()

test_requirements = ['pytest>=3', ]

Expand Down Expand Up @@ -46,6 +45,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/EVOLVED-5G/SDK-CLI',
version='0.2.5',
version='0.5.0',
zip_safe=False,
)

0 comments on commit fb36d6e

Please sign in to comment.