forked from wsp-sag/wsp-balsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 902 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
from os import path
from pkg_resources import safe_version
from setuptools import setup, find_packages
version = {}
with open(path.join(path.dirname(path.realpath(__file__)), 'balsa', 'version.py')) as fp:
exec(fp.read(), {}, version)
version_string = safe_version(version['__version__'])
setup(
name='wsp-balsa',
version=version_string,
description='Python tools for travel demand forecasting applications and analyses',
url='https://github.com/wsp-sag/balsa',
author='WSP',
maintatiner='Brian Cheung',
maintainer_email='brian.cheung@wsp.com',
classifiers=[
'License :: OSI Approved :: MIT License'
],
packages=find_packages(),
install_requires=[
'pandas>=0.21',
'numpy>=1.15',
'numba>=0.35',
'numexpr>=2.6'
],
python_requires='>=3.5',
extras_require={
'plotting': 'matplotlib>=3.0'
}
)