-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
51 lines (49 loc) · 1.6 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
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup
setup(
name='codebook',
version='1.1.0',
description='Emacs minor mode for generating and interacting with jupyter notebooks',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='http://github.com/ebanner/pynt',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: MacOS X',
'Programming Language :: Python :: 3.6',
'Framework :: IPython',
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Topic :: Education',
'Topic :: Software Development',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Documentation',
'Topic :: Text Editors',
'Topic :: Text Editors :: Emacs',
'Topic :: Text Editors :: Integrated Development Environments (IDE)'
],
keywords='interactive programming jupyter ipython emacs',
author='Edward Banner',
author_email='[email protected]',
license='MIT',
packages=['codebook'],
scripts=[
'bin/pynt-embed',
'bin/pynt-serve',
],
install_requires=[
'jupyter',
'astor',
'plac',
'epc'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False,
)