Conflict name
This commit is contained in:
@@ -4,12 +4,12 @@ Smallest library that every project needs!
|
|||||||
It just... Runs your function in new thread with decorator!
|
It just... Runs your function in new thread with decorator!
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install thread
|
pip install ezzthread
|
||||||
```
|
```
|
||||||
|
|
||||||
# Use
|
# Use
|
||||||
```python
|
```python
|
||||||
from thread import threaded
|
from ezzthread import threaded
|
||||||
|
|
||||||
@threaded
|
@threaded
|
||||||
def func():
|
def func():
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
# The smallest library for every python project!
|
# The smallest library for every python project!
|
||||||
|
|
||||||
from thread import *
|
from ezzthread import *
|
||||||
|
|||||||
6
setup.py
6
setup.py
@@ -4,13 +4,13 @@ with open("README.md", "r") as fh:
|
|||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="thread",
|
name="ezzthread",
|
||||||
version="1.0.0",
|
version="1.0.0",
|
||||||
scripts=["thread.py"],
|
scripts=["ezzthread.py"],
|
||||||
author="BarsTiger",
|
author="BarsTiger",
|
||||||
description="Small decorator library for launching threads",
|
description="Small decorator library for launching threads",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
py_modules=["thread"],
|
py_modules=["ezzthread"],
|
||||||
license='MIT',
|
license='MIT',
|
||||||
url='https://github.com/BarsTiger/thread',
|
url='https://github.com/BarsTiger/thread',
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
|||||||
Reference in New Issue
Block a user