-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (34 loc) · 1.19 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
from setuptools import setup, find_packages
setup(
name='jupyweave',
version='0.2.6',
description='Dynamic report generator',
url='https://github.com/jablonskim/jupyweave',
author='Mateusz Jablonski',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Documentation',
'Topic :: Text Processing :: Markup',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='jupyweave literate programming',
packages=find_packages(exclude=['tests', 'examples']),
install_requires=['pygments', 'jupyter', 'jupyter_client'],
package_data={
'jupyweave': ['configs/*.json', 'user_processors/*.py', 'processors/*.py']
},
entry_points={
'console_scripts': [
'jupyweave=jupyweave:main',
'jupyweave_install=jupyweave:install'
]
}
)