forked from UDST/orca_test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 964 Bytes
/
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
# 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='orca_test',
version='0.1dev',
description='Assertions for testing the characteristics of orca tables and columns',
long_description=long_description,
author='UrbanSim Inc.',
author_email='[email protected]',
url='https://github.com/urbansim/orca_test',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
packages=find_packages(exclude=['*.tests']),
install_requires=[
'orca >= 1.3.0',
]
)