diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 341e526..360e24c 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -23,6 +23,9 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --upgrade twine
pip install wheel
+ pip install setuptools
+ pip install tqdm
+ pip install twine
python setup.py sdist bdist_wheel
python -m twine upload --repository pypi dist/*
env:
diff --git a/README.md b/README.md
index 051a2a2..74c24c2 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# 🤖 Pytomatas
-**📌 Version 1.1.1**
+**📌 Version 1.1.2**
@@ -44,7 +44,7 @@ What can do?
You can install Pytomatas using pip:
```bash
-pip install pytomatas
+pip install -i https://pypi.org/simple/ Pytomatas
```
diff --git a/setup.py b/setup.py
index a3f8e4d..30475a2 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,9 @@
setup(
name="Pytomatas",
- version="1.1.1",
+ version="1.1.2",
+ packages=["Pytomatas"] or find_packages("src"),
+ package_dir={"": "src"},
author="arhcoder",
author_email="arhcoder@gmail.com",
description="Simulates Automatons Acceptors DFA, NFA, PDA and Turing Machines",
@@ -16,18 +18,21 @@
long_description_content_type="text/markdown",
url="https://github.com/arhcoder/Pytomatas",
license="MIT License",
- packages=find_packages(),
include_package_data=True,
project_urls={
"Bug Tracker": "https://github.com/arhcoder/Pytomatas/issues",
- "Contribution": "https://github.com/arhcoder/Pytomatas/pulls",
- "Author": "https://github.com/arhcoder"
+ "Author": "https://github.com/arhcoder",
+ "Source": "https://github.com/arhcoder/Pytomatas",
+ "Contribution": "https://github.com/arhcoder/Pytomatas/pulls"
},
+ keywords=[
+ "Automata", "Automaton", "Turing Machine", "Simulation",
+ "DFA", "NFA", "PDA", "TM", "Python"
+ ],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
- package_dir={"": "src"},
python_requires=">=3.6"
)
\ No newline at end of file