forked from janfreyberg/jupyterstan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 1.57 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
readme = open("README.md").read()
setup(
name="jupyterstan",
version="0.2.0",
description="Magics for defining stan code in notebooks.",
long_description=readme,
long_description_content_type="text/markdown",
author="Jan Freyberg",
author_email="[email protected]",
url="https://github.com/janfreyberg/jupyterstan",
packages=find_packages(),
install_requires=["ipython", "pystan", "humanize"],
include_package_data=True,
package_data={
"stan_syntax": [
"static/stan_syntax/*.js",
"static/stan_syntax/*.css",
"static/stan_syntax/*.yaml",
"static/stan_syntax/*.md",
]
},
data_files=[
("etc/jupyter/nbconfig/notebook.d", ["stan_syntax.json"]),
(
"share/jupyter/nbextensions/stan_syntax",
[
"stan_syntax/static/main.js",
"stan_syntax/static/stan.js",
"stan_syntax/static/stan.css",
],
),
],
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: IPython",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)