7 lines
103 B
Python
7 lines
103 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='transcribe',
|
|
version='1.0.0',
|
|
scripts=['transcribe'],
|
|
)
|