Skip to content

Commit

Permalink
Updated requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacotsu committed Dec 14, 2018
1 parent 8f13b8a commit 92175d1
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 21 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ requests==2.3.0
PySide2==5.11.0
appdirs==1.4.0
pyparsing==2.0.3
lxml
-e git://github.com/davethecipo/signalslot.git@ca41d813ed0007c8ea6743fd6332447b003a2390#egg=signalslot
45 changes: 24 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()


def read(*names, **kwargs):
with open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get("encoding", "utf8")
) as fp:
return fp.read()


def find_version(*file_paths):
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
Expand All @@ -35,33 +37,34 @@ def find_version(*file_paths):

setup(
name='poliBeePsync',
version = find_version("polibeepsync/__init__.py"),
url = "http://www.davideolianas.com/polibeepsync",
author= "Davide Olianas",
author_email= "[email protected]",
license = 'GPLv3+',
install_requires = [
version=find_version("polibeepsync/__init__.py"),
url="http://www.davideolianas.com/polibeepsync",
author="Davide Olianas",
author_email="[email protected]",
license='GPLv3+',
install_requires=[
"requests",
"appdirs",
"PySide2",
"beautifulsoup4",
"lxml",
"pyparsing",
"signalslot"
],
python_requires='>=3.7',
packages = ['polibeepsync'],
description = "Sync files from https://beep.metid.polimi.it "
"(for students of Politecnico di Milano)",
long_description = long_description,
classifiers = classifiers,
dependency_links = ['http://github.com/davethecipo/signalslot/tarball'
'/py34#egg=signalslot-0.10.0'],
entry_points = {
'console_scripts': [
'polibeepsync=polibeepsync.qtgui:main',
],
'gui_scripts': [
'polibeepsync-gui=polibeepsync.qtgui:main'
]
}
packages=['polibeepsync'],
description="Sync files from https://beep.metid.polimi.it "
"(for students of Politecnico di Milano)",
long_description=long_description,
classifiers=classifiers,
dependency_links=['http://github.com/davethecipo/signalslot/tarball'
'/py34#egg=signalslot-0.10.0'],
entry_points={
'console_scripts': [
'polibeepsync=polibeepsync.qtgui:main',
],
'gui_scripts': [
'polibeepsync-gui=polibeepsync.qtgui:main'
]
}
)
1 change: 1 addition & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ pytest-cov==1.8.1
pyflakes==0.8.1
cov-core==1.15.0
py>=1.5.4
lxml
requests-mock

0 comments on commit 92175d1

Please sign in to comment.