From 790ce7b28794c699d64263cd80a8fe9f18c8c679 Mon Sep 17 00:00:00 2001 From: Eriks Karls Date: Fri, 19 Jul 2019 10:36:35 +0300 Subject: [PATCH] requirements --- .gitignore | 4 ++++ requirements_dev.txt | 2 +- setup.py | 7 +------ tests/test_erepublik_script.py | 2 +- tox.ini | 6 ++---- 5 files changed, 9 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 84229f4..30097d7 100644 --- a/.gitignore +++ b/.gitignore @@ -100,3 +100,7 @@ ENV/ # mypy .mypy_cache/ + +debug/ +log/ +docs/ diff --git a/requirements_dev.txt b/requirements_dev.txt index 8cf206c..feab4de 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,4 +1,4 @@ -pip==18.1 +pip==19.1.1 bumpversion==0.5.3 wheel==0.32.1 watchdog==0.9.0 diff --git a/setup.py b/setup.py index 0f34596..d511156 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/tests/test_erepublik_script.py b/tests/test_erepublik_script.py index 1945655..715a222 100644 --- a/tests/test_erepublik_script.py +++ b/tests/test_erepublik_script.py @@ -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 diff --git a/tox.ini b/tox.ini index 96540a4..1e8e194 100644 --- a/tox.ini +++ b/tox.ini @@ -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