forked from openedx-unsupported/bok-choy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 900 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
#!/usr/bin/env python
from setuptools import setup
VERSION = '0.3.0'
DESCRIPTION = 'UI-level acceptance test framework'
REQUIREMENTS = [
line.strip() for line in open("requirements.txt").readlines()
]
setup(
name='bok_choy',
version=VERSION,
author='edX',
url='http://github.com/edx/bok-choy',
description=DESCRIPTION,
license='AGPL',
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance'],
packages=['bok_choy'],
install_requires=REQUIREMENTS,
)