An ebook/comic library service and web client
 
 
 
 

10 lines
164 B

from setuptools import setup
setup(
name='atheneum',
packages=['atheneum'],
include_package_data=True,
install_requires=[
'flask',
],
)