forked from nmoya/whatsapp-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.23 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
#!/usr/bin/env python
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
import codecs
long_description = codecs.open('README.rst', 'r', encoding='utf-8').read()
version = '1.0.2'
setup(
name='whatsapp-parser',
version=version,
author='Nikolas Moya',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url='https://github.com/nmoya/whatsapp-parser',
license='MIT',
description='',
long_description=long_description,
entry_points={
'console_scripts': [
'wp_parser=wp_parser.wp_chat:main',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)