#4 - Add python dependency
This commit is contained in:
parent
fd0d717cd4
commit
00160cdf5c
4 changed files with 13 additions and 12 deletions
2
Makefile
2
Makefile
|
@ -3,7 +3,7 @@ PYTHONCOVERAGE=`which python3-coverage`
|
|||
DESTDIR=/
|
||||
BUILDIR=$(CURDIR)/debian/pymanager
|
||||
PROJECT=pymanager
|
||||
VERSION=1.0.0
|
||||
VERSION=1.2.0
|
||||
#OMIT_COVERGAGE=--omit=/usr/lib/python3/*,tests/*
|
||||
|
||||
all:
|
||||
|
|
|
@ -17,4 +17,4 @@
|
|||
# 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/>.
|
||||
|
||||
__version__ = '1.1.0'
|
||||
__version__ = '1.2.0'
|
||||
|
|
1
requirements.txt
Normal file
1
requirements.txt
Normal file
|
@ -0,0 +1 @@
|
|||
bcrypt >= 3.1.4
|
20
setup.py
20
setup.py
|
@ -44,7 +44,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
|||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name='pymanager',
|
||||
name='opennel-manager',
|
||||
|
||||
# Versions should comply with PEP440. For a discussion on single-sourcing
|
||||
# the version across setup.py and the project code, see
|
||||
|
@ -55,7 +55,7 @@ setup(
|
|||
long_description=long_description,
|
||||
|
||||
# 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='Aleajactaest',
|
||||
|
@ -129,12 +129,12 @@ setup(
|
|||
# To provide executable scripts, use entry points in preference to the
|
||||
# "scripts" keyword. Entry points provide cross-platform support and allow
|
||||
# pip to create the appropriate form of executable for the target platform.
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'opennel_certificate=pymanager.certificate:main',
|
||||
'opennel_manager=pymanager.manager:main',
|
||||
'opennel_client=pymanager.client:main',
|
||||
'opennel_password=pymanager.password:main',
|
||||
],
|
||||
},
|
||||
# entry_points={
|
||||
# 'console_scripts': [
|
||||
# 'opennel_certificate=pymanager.certificate:main',
|
||||
# 'opennel_manager=pymanager.manager:main',
|
||||
# 'opennel_client=pymanager.client:main',
|
||||
# 'opennel_password=pymanager.password:main',
|
||||
# ],
|
||||
# },
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue