-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 921 Bytes
/
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
"""
Setup.py
Build proccess for package.
"""
from setuptools import setup, find_packages
def readme() -> str:
""" Gets readme """
with open('README.md', 'r', encoding='utf-8') as f:
return f.read()
setup(
name = 'pyddns',
version= '0.1.0',
author = 'Mitchell Johnson',
license= 'MIT',
author_email = '[email protected].',
description = 'Simple programmable DDNS client to automate IP adress changes.',
long_description = readme(),
long_description_content_type = 'text/markdown',
url = 'https://github.com/mitjohnson/py_ddns',
package_dir={'': 'src'},
packages = find_packages(where='src'),
classifiers = [
'License :: OSI Approved :: MIT License'
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
install_requires = ['cloudflare'],
python_requires=">=3.10",
)