-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swap to pyproject.toml & hatchling (#105)
- Loading branch information
Showing
17 changed files
with
52 additions
and
517 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "pymyob" | ||
version = "1.2.24" | ||
dependencies = [ | ||
"requests>=2.32.0", | ||
"requests-oauthlib>=2.0.0", | ||
] | ||
requires-python = ">= 3.8" | ||
authors = [ | ||
{name = "Jarek Głowacki", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "Jarek Głowacki", email = "[email protected]"} | ||
] | ||
description = "A Python SDK for the MYOB Business (formerly AccountRight Live, and New Essentials) API." | ||
readme = "README.md" | ||
keywords = ["myob"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"Topic :: Office/Business :: Financial :: Accounting", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
|
||
[project.urls] | ||
source = "https://github.com/uptick/pymyob" | ||
releasenotes = "https://github.com/uptick/pymyob/releases" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src/myob"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,3 @@ | ||
[metadata] | ||
name = pymyob | ||
version = attr: myob.__version__ | ||
author = Jarek Głowacki | ||
author_email = [email protected] | ||
license = BSD | ||
description = A Python API around MYOB's AccountRight API. | ||
keywords = myob | ||
url = https://github.com/uptick/pymyob | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Environment :: Web Environment | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: BSD License | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Topic :: Office/Business | ||
[options] | ||
packages = myob | ||
install_requires = | ||
requests>=2.10.0 | ||
requests-oauthlib>=0.6.0 | ||
[flake8] | ||
ignore = E501 | ||
max-line-length = 100 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .api import Myob # noqa |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
To run the test suite, run `python setup.py test` from the root directory. | ||
To run the test suite, run `python -m unittest discover` from the root directory. |