forked from UDST/choicemodels
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (34 loc) · 1.01 KB
/
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
# Install setuptools if not installed.
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
# read README as the long description
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='choicemodels',
version='0.1dev',
description='Tools for discrete choice estimation',
long_description=long_description,
author='Urban Analytics Lab',
url='https://github.com/ual/choicemodels',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License'
],
packages=find_packages(exclude=['*.tests']),
install_requires=[
'future>=0.16.0',
'numpy>=1.8.0',
'pandas>=0.17.0',
'patsy>=0.3.0',
'scipy>=0.13.3',
'statsmodels>=0.8.0',
]
)