-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
23 lines (21 loc) · 866 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
from distutils.core import setup
import setuptools
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name = 'VerifyKit',
packages=setuptools.find_packages(),
version = '0.4',
description = 'VerifyKit is the next gen phone number validation system. Users can easily verify their phone numbers without the need of entering phone number or a pin code.',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'VerifyKit',
author_email = '[email protected]',
url = 'https://github.com/verifykit/verifykit-sdk-python',
download_url = 'https://github.com/verifykit/verifykit-sdk-python/archive/master.zip',
keywords = ['verifykit', ''],
install_requires = ["requests"],
classifiers = [],
)