summaryrefslogtreecommitdiff
path: root/slides/devtools/code/my_project/setup.py
blob: be4ce0655d806971518f12dbb42c87f22f7746f4 (plain)
1
2
3
4
5
6
7
8
9
10
from setuptools import setup, find_packages

setup(
    name="sees",
    version="0.1",
    description="Utility code for SEES course",
    author="FOSSEE developers",
    author_email="python@fossee.in",
    packages=find_packages(),
)