diff --git a/Makefile b/Makefile index ccd88c8..271ca68 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,14 @@ coverage: sites: python scripts/site_list.py publish: - pip install twine + rm -fr build dist .egg socialname.egg-info + pip install twine wheel python setup.py sdist bdist_wheel twine upload dist/* rm -fr build dist .egg socialname.egg-info +testpublish: + rm -fr build dist .egg socialname.egg-info + pip install twine wheel + python setup.py sdist bdist_wheel + twine upload --repository testpypi dist/* + rm -fr build dist .egg socialname.egg-info diff --git a/requirements-dev.txt b/requirements-dev.txt index 845e088..e650c7e 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,5 @@ -bs4 -cerberus +Cerberus colorama -lxml requests torrequest psutil diff --git a/setup.py b/setup.py index 338ef4c..587270e 100644 --- a/setup.py +++ b/setup.py @@ -11,13 +11,11 @@ install_requires = [ - "bs4", - "cerberus", - "colorama", - "lxml", - "requests", - "torrequest", - "psutil", + "Cerberus>=1.3.2", + "colorama>=0.4.4", + "requests>=2.25.1", + "torrequest>=0.1.0", + "psutil>=5.8.0", ] if sys.version_info[:2] == (3, 6): diff --git a/socialname/__version__.py b/socialname/__version__.py index e9ede62..ef3f1da 100644 --- a/socialname/__version__.py +++ b/socialname/__version__.py @@ -1,5 +1,5 @@ __title__ = "socialname" -__version__ = "0.1.0" +__version__ = "0.1.3" __author__ = "Yusuke Hayashi" __author_email__ = "yusuke8h@gmail.com" __license__ = "MIT"