diff --git a/README.md b/README.md index d8c2abf..18712fa 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ _Fasttyper_ is minimalistic typing test based on user provided exercising text. _Fasttyper_ is currently maintained on [TestPyPi](https://test.pypi.org/) Python Package Index. To install package simpply use: -`python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps fasttyper-pkg-ickyicky` +`python3 -m pip install fasttyper` # Usage diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..bdaa886 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,8 @@ +[bumpversion] +current_version = 1.1.0 + +[wheel] +universal = 1 + +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index 8461927..e122a55 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,8 @@ with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup( - name="fasttyper-pkg-ickyicky", - version="1.0.0", + name="fasttyper", + version="1.1.0", author="Piotr Domanski", author_email="pi.domanski@gmail.com", description="Minimalistic typing exercise",