-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
38 lines (33 loc) · 980 Bytes
/
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
from __future__ import with_statement
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
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()
__author__ = "Michael Kraus"
__version__ = "0.1.1"
setup(
name="ipython-tikzmagic",
version=__version__,
author=__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,
install_requires=[
"ipython",
]
)