You've already forked akaunting-py
Updated working environment to virtualenv
This commit is contained in:
6
.gitignore
vendored
6
.gitignore
vendored
@@ -8,4 +8,8 @@ coverage.xml
|
||||
|
||||
# Ignore Scratch files
|
||||
scratch/*
|
||||
!/scratch/README.md
|
||||
!/scratch/README.md
|
||||
|
||||
# Ignore virtualenv
|
||||
.venv
|
||||
venv
|
||||
@@ -1,9 +1,13 @@
|
||||
from importlib.metadata import version, PackageNotFoundError
|
||||
import requests
|
||||
import json
|
||||
from requests.auth import HTTPBasicAuth
|
||||
from akauntingpy import exceptions, __version__
|
||||
from akauntingpy.helpers import *
|
||||
from akauntingpy import exceptions
|
||||
|
||||
from setuptools_scm import get_version
|
||||
|
||||
__version__ = get_version(root='..', relative_to=__file__)
|
||||
|
||||
class Client(object):
|
||||
"""
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
requests >= 2.21.0
|
||||
pytest
|
||||
requests >= 2.27.0
|
||||
pytest >= 7.1.2
|
||||
pytest-cov >= 3.0.0
|
||||
|
||||
Reference in New Issue
Block a user