mirror of
https://github.com/codl/forget
synced 2024-12-29 08:30:38 +01:00
17 lines
317 B
Python
17 lines
317 B
Python
from setuptools import setup
|
|
import versioneer
|
|
|
|
setup(
|
|
name='forget',
|
|
description='A post-expiring service.',
|
|
|
|
url='https://forget.codl.fr/',
|
|
author='codl',
|
|
author_email='codl@codl.fr',
|
|
|
|
version=versioneer.get_version(),
|
|
cmdclass=versioneer.get_cmdclass(),
|
|
)
|
|
|
|
|