-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
42 lines (39 loc) · 1.53 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
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-bin-checker',
version='0.1.0',
description="Python wrapper for Prompt API's BIN Checker API",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/promptapi/bin-checker-py',
author='Prompt API',
author_email='[email protected]',
license='MIT',
python_requires='>=3.7',
package_dir={'': 'src'},
packages=find_packages(where='src', exclude=['tests']),
extras_require={
'development': ['vb-console'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'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 :: Financial and Insurance Industry',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='promptapi, bin, checker',
install_requires=['requests'],
project_urls={
'Prompt API': 'https://promptapi.com',
'BIN Checker API': 'https://promptapi.com/marketplace/description/bincheck-api',
'Source': 'https://github.com/promptapi/bin-checker-py',
},
)