Skip to content

Commit

Permalink
Added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronjphillips committed Mar 31, 2017
1 parent 7544d85 commit 1abf323
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
8 changes: 4 additions & 4 deletions modules/application.py
Expand Up @@ -14,10 +14,10 @@

from PyQt5 import Qt

import preferences
import addaddondlg
import waitdlg
import defines
from modules import preferences
from modules import addaddondlg
from modules import waitdlg
from modules import defines

opener = build_opener(HTTPCookieProcessor(cookiejar.CookieJar()))
# default User-Agent ('Python-urllib/2.6') will *not* work
Expand Down
2 changes: 1 addition & 1 deletion modules/preferences.py
@@ -1,5 +1,5 @@
from PyQt5 import Qt
import defines
from modules import defines


class PreferencesDlg(Qt.QDialog):
Expand Down
2 changes: 1 addition & 1 deletion modules/waitdlg.py
Expand Up @@ -4,7 +4,7 @@
from urllib.request import build_opener, HTTPCookieProcessor, HTTPError
from http import cookiejar
import zipfile
import defines
from modules import defines
import os
import re
import time
Expand Down
13 changes: 13 additions & 0 deletions setup.py
@@ -0,0 +1,13 @@
#!/usr/bin/env python3

from distutils.core import setup

setup(
name='lcurse',
version='2.0.0',
description='A Curse compatible client for Linux.',
url='https://github.com/ephraim/lcurse',
packages=['modules'],
scripts=['lcurse', 'console.py'],
license='Unlicense',
)

0 comments on commit 1abf323

Please sign in to comment.