forked from gpcimino/pickleablelambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (19 loc) · 778 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (19 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
import setuptools
setuptools.setup(
name='pickablelambda',
version='0.1',
# This automatically detects the packages in the specified
# (or current directory if no directory is given).
packages=setuptools.find_packages(),
zip_safe=False,
author='Giampaolo Cimino',
author_email='gcimino@gmail.com',
description='Make lambda functions pickleable',
# For this parameter I would recommend including the
# README.rst
long_description='''Using a proxy class lambda functions can be pickled and unpickled.''',
# The license should be one of the standard open source
# licenses: https://opensource.org/licenses/alphabetical
license='MIT',
test_suite = 'tests')