-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (25 loc) · 850 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
25
26
27
from setuptools import setup, find_packages
import codecs
import os
# read the contents of your README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyviralcontent',
version='0.1.4',
packages=find_packages(),
install_requires=[
'pandas',
'numpy',
'matplotlib',
'seaborn'
],
author='Bhaskar Tripathi',
author_email='bhaskar.tripathi@gmail.com',
description='A package for analyzing content readability and virality potential.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='readability virality content-analysis',
url='https://github.com/bhaskatripathi/pyviralcontent',
)