blob: 0cfafbdc403135322ebd400d2e8ef43333f92a33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/python3
# vim: shiftwidth=4 tabstop=4 expandtab
from distutils.core import setup
setup(name="birdscan",
version="0.0.1",
description="A software to take nice pictures of birds with a Raspberry Pi Camera",
author="xengineering",
author_email="mail2xengineering@protonmail.com",
url="https://xengineering.eu",
packages=["birdscan"],
)
|