library/setup.py

9 lines
242 B
Python
Raw Normal View History

2013-12-18 20:31:27 -05:00
from distutils.core import setup
setup(name="librarian",
description="Library Management Software for CSC",
2014-01-12 20:31:37 -05:00
author="jladan",
2013-12-18 20:31:27 -05:00
version="1.0",
2014-01-12 20:31:37 -05:00
packages=['library','library.interface'],
2013-12-18 20:31:27 -05:00
scripts=["librarian"]
)