-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
35 lines (34 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name='retentioneering',
version='0.3.1',
license='Mozilla Public License',
description='Python package for user trajectories analysis in the app',
long_description='Python package for user trajectories analysis in the app',
author='App in the Air',
author_email='[email protected]',
url='https://github.com/appintheair/retentioneering-framework',
keywords=['ANALYTICS', 'CLICKSTREAM', 'RETENTIONEERING', 'RETENTION', 'GRAPHS', 'TRAJECTORIES'],
install_requires=[
'cython',
'cmake',
'google-cloud-bigquery>=1.6.0',
'grandalf>=0.6',
'matplotlib>=2.2.3',
'networkx>=2.2',
'numpy>=1.14.4',
'pandas>=0.23.1',
'plotly>=3.3.0',
'pyyaml>=4.2b4',
'requests>=2.20.0',
'scikit-learn>=0.19.2',
'scipy>=1.1.0',
'seaborn>=0.9.0',
'tqdm>=4.26.0',
'jupyter>=1.0.0',
],
classifiers=[
'Development Status :: 4 - Beta'
],
packages=find_packages()
)