-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (33 loc) · 1.32 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
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='python-namesilo',
version='1.7.0',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=['requests', 'xmltodict'],
python_requires='>=3.8,<=3.12',
py_modules=['namesilo'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
url='https://github.com/goranvrbaski/python-namesilo',
license='GPLv3+',
author='Goran Vrbaski',
author_email='vrbaski.goran@gmail.com',
description='API wrapper for Namesilo service',
long_description=long_description,
long_description_content_type="text/markdown"
)