-
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
Showing
3 changed files
with
45 additions
and
33 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,8 +1,2 @@ | ||
__title__ = 'django-daiquiri-client' | ||
__version__ = '0.1.0' | ||
__author__ = 'Jochen Klar' | ||
__email__ = '[email protected]' | ||
__license__ = 'Apache-2.0' | ||
__copyright__ = 'Copyright 2018 Leibniz Institute for Astrophysics Potsdam (AIP)' | ||
__version__ = '0.1.1' | ||
|
||
from .client import Client |
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,44 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "django-daiquiri-client" | ||
description = "Daiquiri Client is a python library meant to be used with the Daiquiri Framework." | ||
readme = "README.rst" | ||
dynamic = ["version"] | ||
license = {text = "Apache-2.0"} | ||
authors = [ | ||
{name = "Jochen Klar", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Kirill Makan", email = "[email protected]"}, | ||
] | ||
requires-python = ">=3.11" | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', # 3 - Alpha, 4 - Beta, 5 - Production/Stable, 6 - Mature, 7 - Inactive (1 - Planning) | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: Linux and OSX", | ||
] | ||
|
||
dependencies = [ | ||
"requests>=2.32", | ||
"simplejson>=3.19", | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/django-daiquiri/client" | ||
Issues = "https://github.com/django-daiquiri/client/issues" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "daiquiri_client.__version__"} | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
"daiquiri_client", | ||
] | ||
include-package-data = false |