#4 - Add python dependency

This commit is contained in:
AleaJactaEst 2018-10-13 15:09:59 +02:00
parent fd0d717cd4
commit 00160cdf5c
4 changed files with 13 additions and 12 deletions

View file

@ -3,7 +3,7 @@ PYTHONCOVERAGE=`which python3-coverage`
DESTDIR=/ DESTDIR=/
BUILDIR=$(CURDIR)/debian/pymanager BUILDIR=$(CURDIR)/debian/pymanager
PROJECT=pymanager PROJECT=pymanager
VERSION=1.0.0 VERSION=1.2.0
#OMIT_COVERGAGE=--omit=/usr/lib/python3/*,tests/* #OMIT_COVERGAGE=--omit=/usr/lib/python3/*,tests/*
all: all:

View file

@ -17,4 +17,4 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
__version__ = '1.1.0' __version__ = '1.2.0'

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
bcrypt >= 3.1.4

View file

@ -44,7 +44,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read() long_description = f.read()
setup( setup(
name='pymanager', name='opennel-manager',
# Versions should comply with PEP440. For a discussion on single-sourcing # Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see # the version across setup.py and the project code, see
@ -55,7 +55,7 @@ setup(
long_description=long_description, long_description=long_description,
# The project's main homepage. # The project's main homepage.
url='//git.khaganat.net/khaganat/mmorpg_khanat/opennel-pymanager', url='https://git.khaganat.net/khaganat/mmorpg_khanat/opennel-pymanager',
# Author details # Author details
author='Aleajactaest', author='Aleajactaest',
@ -129,12 +129,12 @@ setup(
# To provide executable scripts, use entry points in preference to the # To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow # "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform. # pip to create the appropriate form of executable for the target platform.
entry_points={ # entry_points={
'console_scripts': [ # 'console_scripts': [
'opennel_certificate=pymanager.certificate:main', # 'opennel_certificate=pymanager.certificate:main',
'opennel_manager=pymanager.manager:main', # 'opennel_manager=pymanager.manager:main',
'opennel_client=pymanager.client:main', # 'opennel_client=pymanager.client:main',
'opennel_password=pymanager.password:main', # 'opennel_password=pymanager.password:main',
], # ],
}, # },
) )