-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (40 loc) · 1.56 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
38
39
40
41
42
43
import pathlib
from setuptools import find_packages, setup
CURRENT_WORKING_DIRECTORY = pathlib.Path(__file__).parent.resolve()
LONG_DESCRIPTION = (CURRENT_WORKING_DIRECTORY / 'README.md').read_text(encoding='utf-8')
setup(
name='pa-whois',
version='0.1.0',
description="Python wrapper for Prompt API's Whois API",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/promptapi/whois-py',
author='Prompt API',
author_email='[email protected]',
license='MIT',
python_requires='>=3.7',
package_dir={'': 'src'},
packages=find_packages(where='src', exclude=['tests', 'examples']),
extras_require={
'development': ['vb-console'],
},
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
],
keywords='promptapi, whois, domain-name, domain-lookup, api',
install_requires=['requests'],
project_urls={
'Prompt API': 'https://promptapi.com',
'Scraper API': 'https://promptapi.com/marketplace/description/whois-api',
'Source': 'https://github.com/promptapi/whois-py',
},
)