requirements

This commit is contained in:
Eriks Karls 2019-07-19 10:36:35 +03:00
parent f9eac109c2
commit 790ce7b287
5 changed files with 9 additions and 12 deletions

4
.gitignore vendored
View File

@ -100,3 +100,7 @@ ENV/
# mypy
.mypy_cache/
debug/
log/
docs/

View File

@ -1,4 +1,4 @@
pip==18.1
pip==19.1.1
bumpversion==0.5.3
wheel==0.32.1
watchdog==0.9.0

View File

@ -11,7 +11,7 @@ with open('README.rst') as readme_file:
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = ['Click>=6.0', ]
requirements = ['Click>=6.0', 'pytz==2018.9', 'requests==2.21.0', 'python-slugify==2.0.1']
setup_requirements = [ ]
@ -25,12 +25,7 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description="Python package for eRepublik automated playing",

View File

@ -7,7 +7,7 @@
import unittest
from click.testing import CliRunner
from erepublik_script import erepublik_script
from erepublik_script import Citizen
from erepublik_script import cli

View File

@ -1,12 +1,10 @@
[tox]
envlist = py27, py34, py35, py36, flake8
envlist = py36, py37, flake8
[travis]
python =
3.7: py37
3.6: py36
3.5: py35
3.4: py34
2.7: py27
[testenv:flake8]
basepython = python