You've already forked akaunting-py
Initial project setup
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.vscode
|
||||||
0
akaunting-py/__init__.py
Normal file
0
akaunting-py/__init__.py
Normal file
0
akaunting-py/api.py
Normal file
0
akaunting-py/api.py
Normal file
36
setup.py
Normal file
36
setup.py
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
from setuptools import find_packages
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
|
with open('README.md', 'r') as readme:
|
||||||
|
long_description = readme.read()
|
||||||
|
|
||||||
|
|
||||||
|
version = '0.3.0'
|
||||||
|
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='akaunting-py',
|
||||||
|
version=version,
|
||||||
|
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',
|
||||||
|
license='GPL-3',
|
||||||
|
keywords='akaunting api library',
|
||||||
|
packages=find_packages(),
|
||||||
|
install_requires=[
|
||||||
|
'requests >= 2.21.0',
|
||||||
|
],
|
||||||
|
classifiers=[
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
],
|
||||||
|
command_options={
|
||||||
|
'build_sphinx': {
|
||||||
|
'version': ('setup.py', version),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user