Skip to content

Commit

Permalink
Add pyproject toml
Browse files Browse the repository at this point in the history
  • Loading branch information
kimakan committed Jul 23, 2024
1 parent 30521dc commit a71507a
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 33 deletions.
8 changes: 1 addition & 7 deletions daiquiri_client/__init__.py
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
44 changes: 44 additions & 0 deletions pyproject.toml
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
26 changes: 0 additions & 26 deletions setup.py

This file was deleted.

0 comments on commit a71507a

Please sign in to comment.