Files
akaunting-py/setup.py

37 lines
948 B
Python
Raw Normal View History

2022-05-13 17:05:38 +12:00
from setuptools import find_packages
from setuptools import setup
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
2022-11-25 23:03:43 +13:00
name='akaunting-py',
2022-05-16 14:48:53 +12:00
use_scm_version=True,
2022-05-13 17:05:38 +12:00
author='CyberCinch',
description='Python interface to the Akaunting API.',
url='https://github.com/cybercinch/akaunting-py',
long_description=long_description,
long_description_content_type='text/markdown',
2022-05-13 17:09:11 +12:00
license='MIT',
2022-11-25 23:03:43 +13:00
version='1.0.5',
2022-05-13 17:05:38 +12:00
keywords='akaunting api library',
packages=find_packages(),
install_requires=[
'requests >= 2.21.0',
2022-05-27 23:00:35 +12:00
'setuptools-scm >= 6.4.2'
2022-05-13 17:05:38 +12:00
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
command_options={
2022-05-16 14:48:53 +12:00
# 'build_sphinx': {
# 'version': ('setup.py', version),
# },
2022-05-13 17:05:38 +12:00
},
)