-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (33 loc) · 1.08 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
38
# -*- coding: utf-8 -*-
"""
JS Oxford Code Retreat: Python Runner
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Usage
-----
cr path/to/your/file.py
"""
from setuptools import find_packages, setup
setup(
name='jsox-code-retreat',
version='0.6.0',
url='http://github.com/jsoxford/code-retreat-py',
license='MIT',
author='George Hickman',
author_email='[email protected]',
description='Python Runner for JS Oxford\'s Code Retreat',
long_description=__doc__,
packages=find_packages(),
entry_points={'console_scripts': ['cr=code_retreat.__main__:run']},
install_requires=['pytest==2.5.2', 'requests==2.3.0'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)