20 lines
394 B
Python
20 lines
394 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name="avt_fresh",
|
|
author="Zev Averbach",
|
|
author_email="zev@averba.ch",
|
|
version="0.0.5",
|
|
license="MIT",
|
|
python_requires=">3.10.0",
|
|
keywords='freshbooks API',
|
|
url='https://github.com/zevaverbach/avt-fresh',
|
|
install_requires=[
|
|
'requests',
|
|
'python-dotenv',
|
|
],
|
|
packages=[
|
|
"avt_fresh",
|
|
],
|
|
)
|