forked from sixpack/sixpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 851 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
#!/usr/bin/env python
from sixpack import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='Sixpack',
version=__version__,
author='SeatGeek',
author_email='hi@seatgeek.com',
packages=['sixpack', 'sixpack.test'],
scripts=['bin/sixpack', 'bin/sixpack-web'],
url='http://github.com/seatgeek/sixpack',
license=open('LICENSE.txt').read(),
classifiers=[
'Programming Language :: Python :: 2.7',
],
description='A/B testing framework under active development at SeatGeek',
long_description=open('README.rst').read() + '\n\n' +
open('CHANGES.rst').read(),
tests_require=['nose'],
test_suite='nose.collector',
install_requires=open('requirements.txt').readlines(),
include_package_data=True,
)