-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.06 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
from setuptools import setup, find_packages
from pyvcard import __author__, __license__
setup(name='pyvcard',
version='1.0b0',
description='Powerful vCard (.vcf files) parser',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
classifiers=[
"Topic :: Text Processing",
'Development Status :: 4 - Beta',
'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',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
keywords='vcard vcf contact pyvcard rfc2426 rfc6350',
url='http://github.com/brookite/pyvcard',
author=__author__,
python_requires='>=3.6',
license=__license__,
install_requires=['BeautifulSoup4'],
include_package_data=True,
zip_safe=False)