plotter/setup.py

12 lines
416 B
Python
Raw Permalink Normal View History

2023-03-21 16:48:11 +01:00
from setuptools import setup, find_packages
setup(name='plotter',
version='0.1',
description='A plotting tool written on top of matplotlib to arrive at nice looking plots a little quicker.',
url='https://github.com/rasmusthog/plotter',
author='Rasmus Vester Thøgersen',
author_email='github@rasmusthog.me',
license='GPLv3',
packages=find_packages(),
zip_safe=False)