-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
641f563
commit 17df9dd
Showing
1 changed file
with
19 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
[tool.poetry] | ||
name = "exonetapi" | ||
version = "4.0.0" | ||
description = "Library to interact with the Exonet API." | ||
authors = ["Exonet <[email protected]>"] | ||
maintainers = ["Exonet <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
homepage = "https://github.com/exonet/exonet-api-python" | ||
repository = "https://github.com/exonet/exonet-api-python" | ||
documentation = "https://github.com/exonet/exonet-api-python" | ||
keywords = ["async", "client", "exonet", "exonetapi"] | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
description = "Library to interact with the Exonet API." | ||
license = "MIT" | ||
name = "exonetapi" | ||
packages = [ | ||
{include = "exonetapi"}, | ||
{include = "exonetapi/**/*.py"}, | ||
] | ||
version = "4.0.0" | ||
|
||
[tool.poetry.dependencies] | ||
inflection = "^0.5.1" | ||
|