forked from michakraus/ipython-tikzmagic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 917 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 917 Bytes
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
from __future__ import with_statement
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import tikzmagic
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Framework :: IPython"
]
with open("README.md", "r") as fp:
long_description = fp.read()
setup(
name="ipython-tikzmagic",
version=tikzmagic.__version__,
author=tikzmagic.__author__,
url="https://github.com/mkrphys/ipython-tikzmagic",
py_modules=["tikzmagic"],
description="IPython magics for generating figures with TikZ",
long_description=long_description,
license="BSD",
classifiers=classifiers
)