-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
37 lines (34 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import sys
from setuptools import setup
from os import path, environ
setup_file_dir = path.abspath(path.dirname(__file__))
try:
with open(path.join(setup_file_dir, "README.md"), encoding="utf-8") as f:
long_description = f.read()
except FileNotFoundError:
print("README.md not found")
sys.exit(1)
setup(
name="porkbun-ddns",
version=environ.get('VERSION'),
python_requires='>3.10',
description="A unofficial DDNS-Client for Porkbun domains",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/mietzen/porkbun-ddns",
author="Nils Stein",
author_email="[email protected]",
license="MIT",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
"Operating System :: OS Independent",
],
keywords="porkbun ddns",
packages=["porkbun_ddns"],
install_requires=["xdg-base-dirs~=6.0.1"],
entry_points={
'console_scripts': ['porkbun-ddns=porkbun_ddns.cli:main']
},
)