forked from replicahq/doppelganger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 746 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 746 Bytes
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
#!/usr/bin/env python
# Copyright 2017 Sidewalk Labs | https://www.apache.org/licenses/LICENSE-2.0
from setuptools import setup
setup(
name="doppelganger",
version="0.1.0",
description='Population synthesis library',
author='Kat Busch, Kael Greco and contributors',
author_email='doppelganger@sidewalklabs.com',
packages=['doppelganger'],
install_requires=[
'cvxpy==0.4.8',
'numpy>=1.11.0',
'pandas>=0.19.0',
'pomegranate>=0.7.1',
'requests>=2.0.0',
'six>=1.10.0'
],
extras_require={
'tests': [
'flake8>=2.5.4',
'mock>=2.0.0',
'nose>=1.3.4',
'coveralls>=1.1',
'pytest',
],
},
)