It runs now
This commit is contained in:
parent
0b6e59e575
commit
4df09ed41a
3
builddeb.sh
Executable file
3
builddeb.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
python3 setup.py --command-packages=stdeb.command bdist_deb
|
@ -4,6 +4,13 @@
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
import sys
|
||||
import os
|
||||
try:
|
||||
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
|
||||
except:
|
||||
pass
|
||||
|
||||
import tempfile
|
||||
import i18n
|
||||
import validators
|
||||
|
14
setup.py
14
setup.py
@ -7,15 +7,15 @@ setup(
|
||||
version="0.1",
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
"appdirs==1.4.3",
|
||||
"certifi==2018.11.29",
|
||||
"chardet==3.0.4",
|
||||
"decorator==4.3.0",
|
||||
"idna==2.8",
|
||||
"appdirs>=1.4.3",
|
||||
"certifi>=2018.1",
|
||||
"chardet>=3.0",
|
||||
"decorator>=4.1",
|
||||
"idna>=2.6",
|
||||
"python-i18n==0.3.5",
|
||||
"requests==2.21.0",
|
||||
"requests>=2.18.0",
|
||||
"six>=1.11.0",
|
||||
"urllib3==1.24.1",
|
||||
"urllib3>=1.22",
|
||||
"validators==0.12.3"
|
||||
],
|
||||
entry_points = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user