forked from ActivitySim/populationsim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (25 loc) · 763 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
from ez_setup import use_setuptools
use_setuptools() # nopep8
from setuptools import setup, find_packages
setup(
name='populationsim',
version='0.5',
description='Population Synthesis',
author='contributing authors',
author_email='ben.stabler@rsginc.com',
license='BSD-3',
url='https://github.com/ActivitySim/populationsim',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: BSD License'
],
packages=find_packages(exclude=['*.tests']),
include_package_data=True,
install_requires=[
'activitysim >= 0.9.9.1',
'numpy >= 1.16.1',
'pandas >= 1.1.0',
'ortools >= 5.1.4045'
]
)