-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #283 from ionos-cloud/pyproject_toml
switch to pyproject.toml
- Loading branch information
Showing
11 changed files
with
119 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
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 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,7 @@ | ||
import click | ||
import dim | ||
from flask.cli import FlaskGroup | ||
|
||
@click.group(cls=FlaskGroup, create_app=dim.create_app) | ||
def cli(): | ||
print("For output check your syslog output") |
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,53 @@ | ||
[project] | ||
name = "dimserver" | ||
version = "5.0.2" | ||
maintainers = [ | ||
{ name = "zerimond" }, | ||
] | ||
description = "DNS and IP management Python server" | ||
requires-python = ">=3.9" | ||
dependencies=[ | ||
"mysqlclient>=1.4.6", | ||
"SQLAlchemy~=1.4", | ||
"ldap3~=2.9", | ||
"Flask~=2.1", | ||
"Flask-SQLAlchemy~=2.5", | ||
"Jinja2~=3.1", | ||
"dnspython~=2.1,!=2.2.0", | ||
"requests~=2.27", | ||
"pycryptodome~=3.14", | ||
"gunicorn>=21", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[project.optional-dependencies] | ||
docs = [ | ||
"nose~=1.3", | ||
"nose-ignore-docstring~=0.2", | ||
"pytest~=7.1", | ||
"pytest-cov~=3.0", | ||
"Sphinx~=4.4", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/ionos-cloud/dim" | ||
Issues = "https://github.com/ionos-cloud/dim/issues" | ||
|
||
[project.scripts] | ||
dim = "dim.cli:cli" | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["doc", "etc"] | ||
|
||
|
||
[tool.setuptools] | ||
script-files = ["report", "manage_db", "manage_dim"] | ||
|
||
[tool.setuptools.package-data] | ||
dim = ["sql/*.sql", "../etc/*"] |
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,20 @@ | ||
[project] | ||
name = "dimclient" | ||
version = "1.0.1" | ||
maintainers = [ | ||
{ name = "zerimond" }, | ||
] | ||
description = "DNS and IP management Python library" | ||
readme = "README.md" | ||
requires-python = ">=3.6" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/ionos-cloud/dim" | ||
Issues = "https://github.com/ionos-cloud/dim/issues" |
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,34 @@ | ||
[project] | ||
name = "dimclient-cli" | ||
version = "5.0.2" | ||
maintainers = [ | ||
{ name = "zerimond" }, | ||
] | ||
description = "DNS and IP management Python CLI client" | ||
readme = "README.md" | ||
dependencies = [ | ||
"dimclient", | ||
"python-dateutil>=1.4.1", | ||
"dnspython>=1.12.0,!=2.2.0", | ||
] | ||
requires-python = ">=3.6" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: System Administrators", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[project.optional-dependencies] | ||
docs = [ | ||
"Sphinx~=4.4", | ||
"hypothesis~=5.6.0", | ||
] | ||
|
||
[project.scripts] | ||
ndcli = "dimcli:main" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/ionos-cloud/dim" | ||
Issues = "https://github.com/ionos-cloud/dim/issues" |
This file was deleted.
Oops, something went wrong.