-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.34 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='nomad',
url='https://github.com/Watts-Lab/nomad',
version='0.0.1',
author='Francisco Barreras, Thomas Li, Federico Delussu, Andres Mondragon',
author_email='fbarrer@sas.upenn.edu, thomli@sas.upenn.edu, fedde@dtu.dk',
description='NOMAD provides a repository of processing and analysis methods for GPS mobility data, centralizing tools necessary for large-scale analyses. This repository will serve the dual function of facilitating research for first-time users and enhancing the replicability and robustness of existing methodologies. By collecting many such methods in a single place and documenting their assumptions and robustness metrics, NOMAD aims to enhance methodological transparency and replicability of research.',
packages=['nomad'],
install_requires=[
'pandas',
'numpy',
'datetime',
'pyspark',
'shapely',
'matplotlib',
'networkx',
'pygeohash',
'libgeohash',
'funkybob',
'scipy',
'pyarrow',
's3fs'
],
package_data={'nomad': ['data/*', 'data/**/*']},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.10',
)