summaryrefslogtreecommitdiff
path: root/setup.py
blob: 0a922362902c17e902439129b33b51051cea0296 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python

from setuptools import setup

setup(
	name="szilagyi",
	packages=["szilagyi"],
	extra_requires={"plots": ["matplotlib"]},
)