-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 1.02 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
#!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(name='ipythonblocks',
version='1.10.dev',
description='Practice Python with colored grids in the IPython Notebook',
long_description=long_description,
author='Matt Davis',
author_email='[email protected]',
url='https://github.com/jiffyclub/ipythonblocks/',
packages=find_packages(exclude=['*.test']),
classifiers=['License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Intended Audience :: Education',
'Topic :: Education'],
install_requires=[
'ipython>=4.0',
'notebook>=4.0',
'requests>=1.0',
])