forked from onnela-lab/forest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 961 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
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
requires = [
'holidays', # poplar
'librosa', # for audio file durations in sycamore
'numpy',
'openrouteservice',
'pandas',
'pyproj', # jasmine
'pytz', # jasmine, poplar
'ratelimit',
'requests', # bonsai
'scipy',
'shapely', # jasmine
'ssqueezepy', # oak
'timezonefinder', # poplar, bonsai
'wheel' # for ratelimit
]
package_data = {'forest.poplar.raw': ['noncode/*.csv', 'noncode/*.json']}
with open('README.md', encoding='utf-8') as f:
readme = f.read()
with open('LICENSE.md', encoding='utf-8') as f:
license = f.read()
setup(
name='forest',
version='0.1.1',
description='--add description here--',
long_description=readme,
author='Onnela Lab',
author_email='[email protected]',
license=license,
packages=find_packages(include=["forest*"]),
package_data=package_data,
install_requires=requires
)