cereal/setup.py
Campbell Alden 782e0b0ad6 Add in a mechanism for email confirmation
This is some of the way there but it is still missing at least:
- An actual page to view to confirm the email
- An expiry time on the minted JWT (and other JWT issues like "sub")
2026-08-03 00:33:12 +09:00

10 lines
259 B
Python

from setuptools import setup, find_packages
setup(
name='cereal',
verison='0.0.1',
packages=find_packages(),
include_package_data=True,
package_data={'src': ['templates/**/*.html', 'templates/**/*.txt']},
scripts=['./src/main.py'],
)