forked from sfcta/synthpop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 765 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 765 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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='SynthPop',
version='0.1dev',
description='Population Synthesis',
author='Synthicity',
author_email='ffoti@synthicity.com',
license='AGPL',
url='https://github.com/synthicity/synthpop',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU Affero General Public License v3'
],
packages=find_packages(exclude=['*.tests']),
install_requires=[
'census>=0.5',
'numexpr>=2.3.1',
'numpy>=1.8.0',
'pandas>=0.13.1',
'scipy>=0.13.3',
'us>=0.8'
]
)