14 lines
341 B
Python
14 lines
341 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='tudplot',
|
|
description='Matplotlib styling in TU Darmstadt corporate design',
|
|
author_email='niels.mueller@physik.tu-darmstadt.de',
|
|
|
|
packages=['tudplot', 'pygrace'],
|
|
version='0.1',
|
|
requires=['matplotlib'],
|
|
package_data={'tudplot': ['tud.mplstyle']},
|
|
zip_safe=False,
|
|
)
|