11 lines
352 B
Python
11 lines
352 B
Python
from setuptools import setup
|
|
|
|
setup(name='servant-rtd',
|
|
version='0.0.1',
|
|
description='Documentation for the haskell-servant platform',
|
|
url='https://github.com/haskell-servant/servant',
|
|
author='Servant Contributors',
|
|
author_email='haskell-servant-maintainers@googlegroups.com',
|
|
license='BSD3',
|
|
zip_safe=False)
|
|
|