Redesign settings dialog
Remove dependency on requests
This commit is contained in:
8
setup.py
8
setup.py
@@ -6,17 +6,15 @@ HERE = path.abspath(path.dirname(__file__))
|
||||
|
||||
MAJOR_VERSION = '0'
|
||||
MINOR_VERSION = '3'
|
||||
MICRO_VERSION = '0'
|
||||
MICRO_VERSION = '2'
|
||||
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
|
||||
|
||||
# Get the long description from the README file
|
||||
with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
|
||||
LONG_DESC = f.read()
|
||||
|
||||
INSTALL_DEPS = ['requests',
|
||||
'beautifulsoup4']
|
||||
TEST_DEPS = ['pytest',
|
||||
'unittest2']
|
||||
INSTALL_DEPS = ['beautifulsoup4']
|
||||
TEST_DEPS = []
|
||||
DEV_DEPS = []
|
||||
|
||||
setup(
|
||||
|
Reference in New Issue
Block a user