-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (27 loc) · 1.03 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
from setuptools import setup, find_packages
setup(
name='tripmining',
version='0.5.2',
include_package_data=True,
packages=find_packages(include=["tripmining.model", "tripmining.geo", "tripmining.preprocessing",
"tripmining.preprocessing.parser", "tripmining.dataset"],
exclude=["*.test", "*.test.*", "test.*", "test"]),
package_data={'': ['*.csv']},
url='https://github.com/LinusDietz/tripmining',
license='MIT',
author='Linus Dietz',
author_email='[email protected]',
description='A Python module for mining trips from check-in based data',
install_requires=['geopy',
'scipy',
'pytest',
'xmltodict',
'pandas',
'numpy',
'astral',
'sortedcontainers',
'pymongo',
'networkx',
'bidict',
'humanfriendly']
)