forked from JadenGeller/Guac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 707 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
setup(name='guac',
version='1.0.0',
description='Monadic do-notation in Python',
url='https://github.com/JadenGeller/Guac',
author='Jaden Geller',
license='MIT',
packages=['guac'],
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: PyPy'
],
keywords='monad monadic coroutine generator pypy backtracking',
zip_safe=True)