12 lines
416 B
Python
12 lines
416 B
Python
|
|
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)
|