-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 984 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 984 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
requirements = [item.strip() for item in requirements]
setup(
name='activitysynth',
version='0.1.dev0',
description='Lightweight activity plan generation',
author='UAL',
author_email='magardner@berkeley.edu',
url='https://github.com/ual/activitysynth',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License'
],
packages=find_packages(),
install_requires=requirements,
dependency_links=[
'git+https://github.com/udst/choicemodels/archive/master.zip#egg=choicemodels',
'git+https://github.com/udst/urbansim_templates/archive/master.zip#egg=urbansim_templates']
)