-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1.02 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
'''
setup.py
'''
from os import path
from setuptools import setup
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pocket_stats',
version='0.3.1',
description='Tools for the Pocket reading app https://app.getpocket.com/',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nlbao/pocket_stats.git',
author='Bao Nguyen',
author_email='[email protected]',
license='MIT',
packages=['pocket_stats'],
install_requires=[
'setuptools',
'click',
'pocket-api',
'dash',
'dash-renderer',
'dash-html-components',
'dash-core-components',
'plotly',
'nltk',
'tldextract',
'pandas',
'gunicorn',
'flask-wtf',
],
tests_require=['pytest', 'pytest-cov', 'freezegun'],
zip_safe=False
)