-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (32 loc) · 1.06 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
# 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()
with open('bayarea/requirements.txt') as f:
requirements_lines = f.readlines()
install_requires = [r.strip() for r in requirements_lines]
setup(
name='bayarea',
version='0.1dev',
description='Bay Area UrbanSim implementation',
long_description=long_description,
author='Urban Analytics Lab / UrbanSim Inc.',
author_email='[email protected]',
license='BSD',
url='https://github.com/ual/bayarea',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License'
],
packages=find_packages(exclude=['*.tests']),
install_require=install_requires
)