setup.py 1.08 KB
Newer Older
1 2 3
#!/usr/bin/env python

"""
4
Install bok-choy page objects for acceptance and end-to-end tests.
5 6
"""

7
import os
8 9 10
from setuptools import setup

VERSION = '0.0.1'
11
DESCRIPTION = "Bok-choy page objects for edx-platform"
12

13 14 15 16
# Pip 1.5 will try to install this package from outside
# the directory containing setup.py, so we need to use an absolute path.
PAGES_PACKAGE_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'pages')

17
setup(
18
    name='edxapp-pages',
19 20 21 22 23 24 25 26 27 28 29 30 31 32
    version=VERSION,
    author='edX',
    url='http://github.com/edx/edx-platform',
    description=DESCRIPTION,
    license='AGPL',
    classifiers=[
        'Development Status :: 3 - Alpha',
        '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'
    ],
33
    package_dir={'edxapp_pages': PAGES_PACKAGE_DIR},
34
    packages=['edxapp_pages', 'edxapp_pages.lms', 'edxapp_pages.studio']
35
)