-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 871 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
from setuptools import setup, find_packages
setup(
name='TelegramContract2vCard',
version='1.0.2',
description='make telegram contacts.html or result.json to vCard automatically',
author='jjh4450',
author_email='[email protected]',
url='https://github.com/jjh4450/TelegramContract2vCard',
install_requires=["beautifulsoup4"],
packages=find_packages(exclude=[]),
keywords=['telegram', 'contacts', 'vcf', 'vcard', 'html', 'json', 'parser'],
python_requires='>=3.6',
package_data={},
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)