forked from tech4242/csv2vcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 799 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
setup(
name = 'csvTovcf',
packages = ['csv2vcard'],
version = '0.3.0',
description = 'A library for converting csv to .vcf file',
long_description = README,
long_description_content_type='text/markdown',
author = 'Shivam Mani Tripathi',
author_email = '[email protected]',
url = 'https://github.com/stripathi669/csv2vcard',
download_url = 'https://github.com/stripathi669/csv2vcard/archive/0.3.0.tar.gz',
keywords = ['csv', 'vcard', 'export', 'vcf'],
python_requires = '>=3.6',
classifiers = [
'Development Status :: 3 - Alpha','License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)