Skip to content

Commit

Permalink
Improve installation scripts.
Browse files Browse the repository at this point in the history
Fix bug reported by pazis.
  • Loading branch information
asn-d6 committed Feb 7, 2020
1 parent cb0cbfd commit 7a19118
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion onionbalance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
__url__ = "https://github.com/DonnchaC/onionbalance"
__license__ = "GPL"

from ._version import get_versions
from onionbalance._version import get_versions
__version__ = get_versions()['version']
del get_versions
11 changes: 7 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
setproctitle>=1.1.9

stem>=1.8
pyyaml>=4.2b1
pycrypto==2.6.1
future==0.14.3
sphinxcontrib-autoprogram==0.1.2
setproctitle==1.1.9
cryptography>=2.5

pycrypto>=2.6.1
future>=0.14.3
sphinxcontrib-autoprogram>=0.1.2
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ universal=1
VCS = git
style = pep440
versionfile_source = onionbalance/_version.py
versionfile_build = None
versionfile_build = onionbalance/_version.py
tag_prefix =''
parentdir_prefix = onionbalance-
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ def read(*names, **kwargs):
keywords='tor',
install_requires=[
'setuptools',
'stem>=1.4.0-dev',
'PyYAML>=3.11',
'stem>=1.8',
'PyYAML>=4.2b1',
'pycrypto>=2.6.1',
'future>=0.14.0',
'setproctitle',
'cryptography>=2.5',
],
tests_require=['tox', 'pytest-mock', 'pytest', 'mock', 'pexpect'],
package_data={'onionbalance.config_generator': ['data/*']},
Expand Down

0 comments on commit 7a19118

Please sign in to comment.